Skip to content

Commit

Permalink
Merge pull request #34 from RemiCollin/master
Browse files Browse the repository at this point in the history
Fix Parameter Bank Select
  • Loading branch information
gluon committed Apr 14, 2016
2 parents fba80cb + 84cbddb commit 3bda460
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions RemoteSL/EffectController.py
Expand Up @@ -157,13 +157,13 @@ def __handle_page_up_down_ccs(self, cc_no, cc_value):
else:
if not False:
raise AssertionError('unknown Display midi message')
if not self.__bank == new_bank:
self.__show_bank = True
if not self.__assigned_device_is_locked:
self.__bank = new_bank
self.__reassign_strips()
else:
self.__assigned_device.store_chosen_bank(self.__parent.instance_identifier(), new_bank)
if not self.__bank == new_bank:
self.__show_bank = True
if not self.__assigned_device_is_locked:
self.__bank = new_bank
self.__reassign_strips()
else:
self.__assigned_device.store_chosen_bank(self.__parent.instance_identifier(), new_bank)

def __handle_select_button_ccs(self, cc_no, cc_value):
if cc_no == FX_SELECT_FIRST_BUTTON_ROW:
Expand Down

0 comments on commit 3bda460

Please sign in to comment.