From 3c3ea2f5755b88b22d5b954a83ae1616335fa027 Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Fri, 1 Apr 2011 15:42:00 +0200 Subject: [PATCH] NetworkMenu: fix updating the access point strength A notify signal does not include the new value of the property in its signature, so the handler was trying to compare a GParamSpec with a number when updating. Fix it to always retrieve the value from the object. https://bugzilla.gnome.org/show_bug.cgi?id=646443 --- js/ui/status/network.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/status/network.js b/js/ui/status/network.js index 88521888a..752a9f646 100644 --- a/js/ui/status/network.js +++ b/js/ui/status/network.js @@ -132,8 +132,8 @@ NMNetworkMenuItem.prototype = { } }, - _updated: function(ap, strength) { - if (strength > this.bestAP.strength) + _updated: function(ap) { + if (ap.strength > this.bestAP.strength) this.bestAP = ap; this._signalIcon.icon_name = this._getIcon();