From fac3a900e5de2c60d667c54f2727e806d29cff4b Mon Sep 17 00:00:00 2001 From: David Henningsson Date: Thu, 18 Sep 2014 11:44:34 +0200 Subject: [PATCH] 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 --- gvc-mixer-control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gvc-mixer-control.c b/gvc-mixer-control.c index b270523..f05cbf6 100644 --- a/gvc-mixer-control.c +++ b/gvc-mixer-control.c @@ -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),