Browse Source

Set value of 'show all takes' toggle correctly when updating menus.

tags/non-daw-v1.1.0
Jonathan Moore Liles 17 years ago
parent
commit
a07d997397
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Timeline/Track.C

+ 1
- 1
Timeline/Track.C View File

@@ -481,7 +481,7 @@ Track::update_take_menu ( void )
{
take_menu->clear();

take_menu->add( "Show all takes", 0, 0, 0, FL_MENU_TOGGLE );
take_menu->add( "Show all takes", 0, 0, 0, FL_MENU_TOGGLE | ( _show_all_takes ? FL_MENU_VALUE : 0 ) );
take_menu->add( "New", 0, 0, 0 );

if ( takes->children() )


Loading…
Cancel
Save