diff --git a/js/ui/status/location.js b/js/ui/status/location.js index 052f77cc6..c6694d1a0 100644 --- a/js/ui/status/location.js +++ b/js/ui/status/location.js @@ -96,10 +96,12 @@ const Indicator = new Lang.Class({ _syncIndicator: function() { if (this._proxy == null) { this._indicator.visible = false; + this._item.actor.visible = false; return; } this._indicator.visible = this._proxy.InUse; + this._item.actor.visible = this._indicator.visible; this._updateMenuLabels(); },