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
else:
self.velocity -= 2
if self.velocity <= 2:
self.velocity = 1
if self.velocity < 0:
self.velocity = 0
else:
event.ignore()

Loading…
Cancel
Save