Browse Source

Mixer: Fix settings menu layout issue.

tags/non-daw-v1.3.0
Jonathan Moore Liles 2 years ago
parent
commit
00c02c7d74
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      mixer/src/Mixer.C

+ 2
- 2
mixer/src/Mixer.C View File

@@ -355,7 +355,7 @@ void Mixer::cb_menu(Fl_Widget* o) {
{
fl_theme_chooser();
}
else if ( ! strcmp( picked, "&Mixer/Swap &Fader//Signal View" ) )
else if ( ! strcmp( picked, "&Mixer/Toggle &Fader View" ) )
{
command_toggle_fader_view();
}
@@ -528,7 +528,7 @@ Mixer::Mixer ( int X, int Y, int W, int H, const char *L ) :
o->add( "&Mixer/&Import Strip" );
o->add( "&Mixer/Paste", FL_CTRL + 'v', 0, 0 );
o->add( "&Mixer/&Spatialization Console", FL_F + 8, 0, 0, FL_MENU_TOGGLE );
o->add( "&Mixer/Swap &Fader//Signal View", FL_ALT + 'f', 0, 0, FL_MENU_TOGGLE );
o->add( "&Mixer/Toggle &Fader View", FL_ALT + 'f', 0, 0, FL_MENU_TOGGLE );
// o->add( "&Mixer/&Signal View", FL_ALT + 's', 0, 0, FL_MENU_TOGGLE );
o->add( "&Remote Control/Start Learning", FL_F + 9, 0, 0 );
o->add( "&Remote Control/Stop Learning", FL_F + 10, 0, 0 );


Loading…
Cancel
Save