Browse Source

Merge 322276474a into 55de086026

pull/147/merge
Adam Avramov GitHub 3 years ago
parent
commit
2a09e0ba52
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      mixer/src/Module.C

+ 7
- 0
mixer/src/Module.C View File

@@ -855,6 +855,13 @@ Module::insert_menu_cb ( const Fl_Menu_ *m )
if ( !strcmp( picked, "Aux" ) )
{

if ( ninputs() == 0 )
{
fl_alert( "Cannot insert this module at this point in the chain" );
return;
}

int n = 0;
for ( int i = 0; i < chain()->modules(); i++ )
{


Loading…
Cancel
Save