Browse Source

Mixer: Fix saving of JACK inputs setting as adjusted from buttons on JACK module.

tags/non-daw-v1.2.0
Jonathan Moore Liles 11 years ago
parent
commit
865a14b74b
1 changed files with 4 additions and 6 deletions
  1. +4
    -6
      mixer/src/JACK_Module.C

+ 4
- 6
mixer/src/JACK_Module.C View File

@@ -336,6 +336,8 @@ JACK_Module::cb_button( Fl_Widget *w )
{
int n = audio_output.size();

Logger log(this);

if ( w == dec_button )
{
--n;
@@ -344,12 +346,8 @@ JACK_Module::cb_button( Fl_Widget *w )
{
++n;
}
if ( chain()->can_configure_outputs( this, n ) )
{
configure_outputs( n );
chain()->configure_ports();
}
control_input[1].control_value( n );
}

int


Loading…
Cancel
Save