Browse Source

Allow note_on velocitiy 0

master
Nils 4 years ago
parent
commit
028bb461d1
  1. 4
      qtgui/pattern_grid.py

4
qtgui/pattern_grid.py

@ -603,8 +603,8 @@ class Step(QtWidgets.QGraphicsRectItem):
self.velocity = 127 self.velocity = 127
else: else:
self.velocity -= 2 self.velocity -= 2
if self.velocity <= 2: if self.velocity < 0:
self.velocity = 1 self.velocity = 0
else: else:
event.ignore() event.ignore()

Loading…
Cancel
Save