blob: 0e632c48b07c8cdce2bb6d7c0a5964784b87a23c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
--- a/files/usr/share/cinnamon/applets/bluetooth@cinnamon.org/applet.js
+++ b/files/usr/share/cinnamon/applets/bluetooth@cinnamon.org/applet.js
@@ -455,22 +455,6 @@ MyApplet.prototype = {
this._applet.send_to_address(device.bdaddr, device.alias);
}));
}
- if (device.capabilities & GnomeBluetoothApplet.Capabilities.OBEX_FILE_TRANSFER) {
- item.menu.addAction(_("Browse Files..."), Lang.bind(this, function(event) {
- this._applet.browse_address(device.bdaddr, event.get_time(),
- Lang.bind(this, function(applet, result) {
- try {
- applet.browse_address_finish(result);
- } catch (e) {
- this._ensureSource();
- this._source.notify(new MessageTray.Notification(this._source,
- _("Bluetooth"),
- _("Error browsing device"),
- { body: _("The requested device cannot be browsed, error is '%s'").format(e) }));
- }
- }));
- }));
- }
switch (device.type) {
case GnomeBluetoothApplet.Type.KEYBOARD:
|