Mackie Control: Moved encoder fine modifier from Control to Shift (Shift will be...
authorLen Ovens <len@ovenwerks.net>
Tue, 2 Feb 2016 16:49:16 +0000 (08:49 -0800)
committerLen Ovens <len@ovenwerks.net>
Tue, 2 Feb 2016 16:49:16 +0000 (08:49 -0800)
libs/surfaces/mackie/surface.cc

index 832939cf65b8c19a5455e2ba0bc205d2ba22a42e..c5b2fe5b1d4e80706b46578a2d4a8cb7e96264ed 100644 (file)
@@ -637,7 +637,7 @@ Surface::handle_midi_controller_message (MIDI::Parser &, MIDI::EventTwoBytes* ev
        }
 
        float delta = 0;
-       if (mcp().main_modifier_state() == MackieControlProtocol::MODIFIER_CONTROL) {
+       if (mcp().main_modifier_state() == MackieControlProtocol::MODIFIER_SHIFT) {
                delta = sign * (ticks / (float) 0xff);
        } else {
                delta = sign * (ticks / (float) 0x3f);