From 1a884535ada25f032ea0fab96115b135215972b1 Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Thu, 6 Jan 2011 20:35:21 +0100 Subject: [PATCH] BluetoothStatus: fix typo The function to hide a menu item is .actor.hide(), not just .hide() --- js/ui/status/bluetooth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/status/bluetooth.js b/js/ui/status/bluetooth.js index 06e16e4b3..afda1b474 100644 --- a/js/ui/status/bluetooth.js +++ b/js/ui/status/bluetooth.js @@ -276,7 +276,7 @@ Indicator.prototype = { if (this._hasDevices) this._showAll(this._deviceItems); else - this._deviceSep.hide(); + this._deviceSep.actor.hide(); } else { this._hideAll(this._fullMenuItems); this._hideAll(this._deviceItems);