mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
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:
parent
3e6f62875d
commit
03cb7f3549
2 changed files with 12 additions and 10 deletions
|
|
@ -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 = ' ';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue