mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Do not update devices when JACK is already running
This commit is contained in:
parent
b7ac434584
commit
138b25c0b0
1 changed files with 3 additions and 1 deletions
|
|
@ -1526,7 +1526,9 @@ EngineControl::device_changed ()
|
|||
* the device_name and 'change_device' will never be true.
|
||||
* so work around this by setting...
|
||||
*/
|
||||
if (backend->use_separate_input_and_output_devices ()) {
|
||||
if (!_have_control) {
|
||||
queue_device_changed = false;
|
||||
} else if (backend->use_separate_input_and_output_devices ()) {
|
||||
if (device_name_in != backend->input_device_name () || device_name_out != backend->output_device_name ()) {
|
||||
queue_device_changed = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue