added some shaders, fixed bugs, added to mappings

This commit is contained in:
langolierz
2020-03-12 22:08:45 +00:00
parent 096befc468
commit 1fb885500f
10 changed files with 648 additions and 6 deletions

View File

@@ -121,7 +121,7 @@ class MidiInput(object):
self.actions.call_method_name(method_name, norm_message_value)
except TypeError:
## to support using cc-0 as button presses
if norm_message_value == 0:
if norm_message_value:
self.actions.call_method_name(method_name, None)
## only update screen if not continuous - seeing if cc can respond faster if not refreshing screen on every action
if 'continuous' not in message_name: