diff -u unity-control-center-15.04.0+16.04.20160413/debian/changelog unity-control-center-15.04.0+16.04.20160413/debian/changelog --- unity-control-center-15.04.0+16.04.20160413/debian/changelog +++ unity-control-center-15.04.0+16.04.20160413/debian/changelog @@ -1,3 +1,12 @@ +unity-control-center (15.04.0+16.04.20160413-0ubuntu2) xenial; urgency=medium + + * bluetooh: remove leftover "browse" button, the backend used was + removed during the bluez5 update and the panel callbacks were + cleaned out, the button is doing nothing else than confusing users + (LP: #1562822) + + -- Sebastien Bacher Thu, 12 May 2016 17:48:47 +0200 + unity-control-center (15.04.0+16.04.20160413-0ubuntu1) xenial; urgency=medium * remove the migration script, it was only needed for trusty updates diff -u unity-control-center-15.04.0+16.04.20160413/debian/control unity-control-center-15.04.0+16.04.20160413/debian/control --- unity-control-center-15.04.0+16.04.20160413/debian/control +++ unity-control-center-15.04.0+16.04.20160413/debian/control @@ -58,7 +58,7 @@ libwebkit2gtk-4.0-dev, libgl1-mesa-dev, valac (>= 0.20.0), -Vcs-Bzr: https://code.launchpad.net/~unity-control-center-team/unity-control-center/trunk +Vcs-Bzr: https://code.launchpad.net/~unity-control-center-team/unity-control-center/16.04 Package: unity-control-center Architecture: any only in patch2: unchanged: --- unity-control-center-15.04.0+16.04.20160413.orig/panels/bluetooth/bluetooth.ui +++ unity-control-center-15.04.0+16.04.20160413/panels/bluetooth/bluetooth.ui @@ -545,34 +545,6 @@ 3 - - - True - False - - - - - - Browse Files… - True - True - False - - - False - False - end - 1 - - - - - False - True - 4 - - False only in patch2: unchanged: --- unity-control-center-15.04.0+16.04.20160413.orig/panels/bluetooth/cc-bluetooth-panel.c +++ unity-control-center-15.04.0+16.04.20160413/panels/bluetooth/cc-bluetooth-panel.c @@ -276,7 +276,6 @@ gtk_widget_hide (WID ("keyboard_box")); gtk_widget_hide (WID ("sound_box")); gtk_widget_hide (WID ("mouse_box")); - gtk_widget_hide (WID ("browse_box")); gtk_widget_hide (WID ("send_box")); bdaddr = bluetooth_chooser_get_selected_device (BLUETOOTH_CHOOSER (self->priv->chooser)); @@ -332,10 +331,10 @@ uuids = (const char **) g_value_get_boxed (&value); for (i = 0; uuids && uuids[i] != NULL; i++) { - if (g_str_equal (uuids[i], "OBEXObjectPush")) + if (g_str_equal (uuids[i], "OBEXObjectPush")) { gtk_widget_show (WID ("send_box")); - else if (g_str_equal (uuids[i], "OBEXFileTransfer")) - gtk_widget_show (WID ("browse_box")); + break; + } } g_value_unset (&value); }