network: Make sure to resync when the activating connection changes
Otherwise, we may be left with a stale activating connection if a connection is activating, but doesn't fully activate for whatever reason. https://bugzilla.gnome.org/show_bug.cgi?id=708322
This commit is contained in:
parent
c23786c73e
commit
2c00dad211
@ -1287,6 +1287,7 @@ const NMApplet = new Lang.Class({
|
||||
this._client.connect('notify::networking-enabled', Lang.bind(this, this._syncNMState));
|
||||
this._client.connect('notify::state', Lang.bind(this, this._syncNMState));
|
||||
this._client.connect('notify::primary-connection', Lang.bind(this, this._syncMainConnection));
|
||||
this._client.connect('notify::activating-connection', Lang.bind(this, this._syncMainConnection));
|
||||
this._client.connect('notify::active-connections', Lang.bind(this, this._syncVPNConnections));
|
||||
this._client.connect('device-added', Lang.bind(this, this._deviceAdded));
|
||||
this._client.connect('device-removed', Lang.bind(this, this._deviceRemoved));
|
||||
|
Loading…
Reference in New Issue
Block a user