Browse Source

Timeline: Don't die if user selects nonsense item from Control Sequence Connect To menu.

tags/non-daw-v1.2.0
Jonathan Moore Liles 12 years ago
parent
commit
9501e52d54
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      timeline/src/Control_Sequence.C

+ 1
- 2
timeline/src/Control_Sequence.C View File

@@ -511,14 +511,13 @@ Control_Sequence::menu_cb ( const Fl_Menu_ *m )

DMESSAGE( "Control_Sequence: menu_cb" );

if ( ! m->mvalue() ) // || m->mvalue()->flags & FL_SUBMENU_POINTER || m->mvalue()->flags & FL_SUBMENU )
if ( ! m->mvalue() || m->mvalue()->flags & ( FL_SUBMENU_POINTER | FL_SUBMENU ))
return;

m->item_pathname( picked, sizeof( picked ), m->mvalue() );

if ( ! strncmp( picked, "Connect To/", strlen( "Connect To/" ) ) )
{

char *peer_name = index( picked, '/' ) + 1;
*index( peer_name, '/' ) = 0;


Loading…
Cancel
Save