Browse Source

Mixer: Middle click toggles module activation state.

tags/non-daw-v1.1.0
Jonathan Moore Liles 15 years ago
parent
commit
fab0527527
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      Mixer/Module.C

+ 6
- 0
Mixer/Module.C View File

@@ -489,6 +489,12 @@ Module::handle ( int m )
command_remove();
return 1;
}
else if ( test_press( FL_BUTTON2 ) )
{
bypass( !bypass() );
redraw();
return 1;
}

return 0;
}


Loading…
Cancel
Save