GNOME Bugzilla – Bug 708479
Bluetooth icon not shown even when in use
Last modified: 2013-09-22 20:21:32 UTC
https://raw.github.com/gnome-design-team/gnome-mockups/master/shell/system-menu/combined-system-status-menu-v4-overview.png says that it's supposed to show a Bluetooth icon when it's used. I have a Bluetooth mouse connected to the machine, and the icon doesn't show up.
Uhm, can you run from the lg Main.panel.statusArea.aggregateMenu._bluetooth._applet.get_devices().filter(function(d) { return d.connected }) If something appears there, it's a gnome-shell bug. Otherwise it's a gnome-bluetooth problem.
r(0) = connected is indeed false for the first and only device, even though: Device: Apple wireless trackpad (D8:A2:5E:F9:4A:8C) D-Bus Path: /org/bluez/hci0/dev_D8_A2_5E_F9_4A_8C Type: Tablet Icon: input-tablet Paired: True Trusted: True Connected: True UUIDs: HumanInterfaceDeviceService Looks like the bluetooth-applet.c connected handling is broken (there's no "Connectable" services anymore in BlueZ 5).
Created attachment 255484 [details] [review] applet: Fix the Bluetooth status icon not appearing Port the "connected" and "connectable" statuses to BlueZ 5/GNOME 3.10. The underlying API was changed, but our code wasn't.
Giovanni, I still don't see a "Bluetooth" section inside the menu itself. Anything that I can test to see what's up?
Review of attachment 255484 [details] [review]: We don't use the services hashtable anymore, you should remove it.
Attachment 255484 [details] pushed as 914c486 - applet: Fix the Bluetooth status icon not appearing