diff options
author | Robert Ancell <robert.ancell@canonical.com> | 2012-12-05 09:31:55 +1300 |
---|---|---|
committer | Robert Ancell <robert.ancell@canonical.com> | 2012-12-05 09:31:55 +1300 |
commit | 22bfe32462d5f841e31445329d30f806ed04a705 (patch) | |
tree | 3db061b6d7a67993192ac096f3ae67ff74cb09d0 /src | |
parent | 904619da1ec381880e2ecef21d67d07cda3b3e5c (diff) | |
download | ayatana-indicator-bluetooth-22bfe32462d5f841e31445329d30f806ed04a705.tar.gz ayatana-indicator-bluetooth-22bfe32462d5f841e31445329d30f806ed04a705.tar.bz2 ayatana-indicator-bluetooth-22bfe32462d5f841e31445329d30f806ed04a705.zip |
Workaround a bug in libappindicator3
Diffstat (limited to 'src')
-rw-r--r-- | src/indicator-bluetooth.vala | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/indicator-bluetooth.vala b/src/indicator-bluetooth.vala index b944975..be435cb 100644 --- a/src/indicator-bluetooth.vala +++ b/src/indicator-bluetooth.vala @@ -256,6 +256,7 @@ private class BluetoothMenuItem : Gtk.MenuItem public BluetoothMenuItem (DBusProxy proxy) { this.proxy = proxy; + label = ""; /* Workaround for libappindicator3 - without a label it thinks this is a separator */ submenu = new Gtk.Menu (); send_item = new Gtk.MenuItem.with_label (_("Send files...")); |