13
0

Do not update devices when JACK is already running

This commit is contained in:
Robin Gareus 2023-02-01 03:09:05 +01:00
parent b7ac434584
commit 138b25c0b0
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -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;
}