Move call to EngineControl::device_changed into EngineControl::list_devices ()

This prevents devices_changed from being called twice with backends that have
separate input and output devices
This commit is contained in:
Tim Mayberry 2015-08-10 10:11:33 +10:00
parent c8f8f75831
commit 6e0d062773
1 changed files with 2 additions and 6 deletions

View File

@ -992,8 +992,6 @@ EngineControl::set_device_popdown_strings ()
device_combo.set_active_text (current_device);
}
device_changed ();
return true;
}
return false;
@ -1039,8 +1037,6 @@ EngineControl::set_input_device_popdown_strings ()
DEBUG_ECONTROL (string_compose ("set input_device_combo active text: %1", current_device));
input_device_combo.set_active_text (current_device);
}
device_changed ();
return true;
}
@ -1087,8 +1083,6 @@ EngineControl::set_output_device_popdown_strings ()
DEBUG_ECONTROL (string_compose ("set input_device_combo active text: %1", current_device));
output_device_combo.set_active_text (current_device);
}
device_changed ();
return true;
}
@ -1115,6 +1109,8 @@ EngineControl::list_devices ()
}
if (devices_available) {
device_changed ();
input_latency.set_sensitive (true);
output_latency.set_sensitive (true);
input_channels.set_sensitive (true);