status/network: Always notify icon-name on strength change
We do want to update the best AP on strength change, in case we can switch to a better one. But even if we can't and the AP is unchanged, the icon should be updated to reflect the change. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2414>
This commit is contained in:
parent
04d4d70988
commit
f6e889626b
@ -714,8 +714,10 @@ const WirelessNetwork = GObject.registerClass({
|
|||||||
this._accessPoints.add(ap);
|
this._accessPoints.add(ap);
|
||||||
|
|
||||||
ap.connectObject(
|
ap.connectObject(
|
||||||
'notify::strength', () => this._updateBestAp(),
|
'notify::strength', () => {
|
||||||
this);
|
this.notify('icon-name');
|
||||||
|
this._updateBestAp();
|
||||||
|
}, this);
|
||||||
this._updateBestAp();
|
this._updateBestAp();
|
||||||
|
|
||||||
if (wasActive !== this.is_active)
|
if (wasActive !== this.is_active)
|
||||||
|
Loading…
Reference in New Issue
Block a user