mirror of
https://gitlab.gnome.org/GNOME/libgnome-volume-control.git
synced 2024-11-21 16:30:41 -05:00
gvc-mixer-control: Fix bluetooth duplicates
Entries are only hidden when available == PA_PORT_AVAILABLE_NO, so if an entry toggles between PA_PORT_AVAILABLE_YES and PA_PORT_AVAILABLE_UNKNOWN (Bluetooth headset switching between HSP/HFP and A2DP for example), this should not result in new entries being created. https://bugzilla.gnome.org/show_bug.cgi?id=697545
This commit is contained in:
parent
e14dbe8aa6
commit
fac3a900e5
@ -2136,7 +2136,7 @@ update_card (GvcMixerControl *control,
|
||||
else {
|
||||
for (i = 0; i < info->n_ports; i++) {
|
||||
if (g_strcmp0 (card_port->port, info->ports[i]->name) == 0) {
|
||||
if (card_port->available != info->ports[i]->available) {
|
||||
if ((card_port->available == PA_PORT_AVAILABLE_NO) != (info->ports[i]->available == PA_PORT_AVAILABLE_NO)) {
|
||||
card_port->available = info->ports[i]->available;
|
||||
g_debug ("sync port availability on card %i, card port name '%s', new available value %i",
|
||||
gvc_mixer_card_get_index (card),
|
||||
|
Loading…
Reference in New Issue
Block a user