From: Thomas Weißschuh Date: Sun, 3 Oct 2021 10:18:34 +0000 (+0200) Subject: Use accurate icons for headphones and headsets X-Git-Tag: submit/tizen/20220313.220938~96 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=072d10a2f3279bca5674325f61a610186fd41e83;p=platform%2Fupstream%2Fbluez.git Use accurate icons for headphones and headsets While these icon names are not part of the spec standard names [0] they are in practice implemented by at least Adwaita, Gnome, Oxygen, Arc and Breeze themes. [0] https://specifications.freedesktop.org/icon-naming-spec/latest/ar01s04.html Signed-off-by: Anuj Jain Signed-off-by: Ayush Garg --- diff --git a/src/dbus-common.c b/src/dbus-common.c index 384f2770..5e2c83d5 100755 --- a/src/dbus-common.c +++ b/src/dbus-common.c @@ -72,9 +72,9 @@ const char *class_to_icon(uint32_t class) switch ((class & 0xfc) >> 2) { case 0x01: case 0x02: - return "audio-card"; /* Headset */ + return "audio-headset"; case 0x06: - return "audio-card"; /* Headphone */ + return "audio-headphones"; case 0x0b: /* VCR */ case 0x0c: /* Video Camera */ case 0x0d: /* Camcorder */