diff --git a/js/ui/status/network.js b/js/ui/status/network.js index 9e2ef3a8b..14df7978b 100644 --- a/js/ui/status/network.js +++ b/js/ui/status/network.js @@ -1342,6 +1342,9 @@ const NMSection = GObject.registerClass({ this._client?.disconnectObject(this); this._client = client; + this._client?.connectObject( + 'notify::networking-enabled', () => this._sync(), + this); this._items.forEach(item => item.destroy()); this._items.clear(); @@ -1461,7 +1464,8 @@ const NMSection = GObject.registerClass({ } _sync() { - this.visible = this._items.size > 0; + this.visible = + this._client?.networking_enabled && this._items.size > 0; this._updateItemsVisibility(); this._updateChecked(); this._itemBinding.source = this._getPrimaryItem(); @@ -1875,9 +1879,6 @@ class Indicator extends PanelMenu.SystemIndicator { this._client.bind_property('nm-running', this, 'visible', GObject.BindingFlags.SYNC_CREATE); - this._client.bind_property('networking-enabled', - this.menu.actor, 'visible', - GObject.BindingFlags.SYNC_CREATE); this._client.connectObject( 'notify::primary-connection', () => this._syncMainConnection(),