jack: make jack.merge-monitor default true

Make jack.merge-monitor true by default because this is what JACK also
does.

Add an exception for Mixxx because that makes it easier to select the
capture/monitor ports.

Fixes #1760
This commit is contained in:
Wim Taymans 2023-01-25 09:48:28 +01:00
parent 3e6f62875d
commit 03cb7f3549
2 changed files with 12 additions and 10 deletions

View file

@ -3480,7 +3480,7 @@ jack_client_t * jack_client_open (const char *client_name,
client->info.change_mask = 0;
client->show_monitor = pw_properties_get_bool(client->props, "jack.show-monitor", true);
client->merge_monitor = pw_properties_get_bool(client->props, "jack.merge-monitor", false);
client->merge_monitor = pw_properties_get_bool(client->props, "jack.merge-monitor", true);
client->short_name = pw_properties_get_bool(client->props, "jack.short-name", false);
client->filter_name = pw_properties_get_bool(client->props, "jack.filter-name", false);
client->filter_char = ' ';