From 712623946f795606cc750006ef6ef55a2cd2351c Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Tue, 21 Aug 2012 23:50:46 -0300 Subject: [PATCH] network: Fix icon_size parameter We forgot to update this to NOTIFICATION_ICON_SIZE https://bugzilla.gnome.org/show_bug.cgi?id=682412 --- js/ui/status/network.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/ui/status/network.js b/js/ui/status/network.js index cb1991c8d..c7b9665e0 100644 --- a/js/ui/status/network.js +++ b/js/ui/status/network.js @@ -1780,8 +1780,7 @@ const NMApplet = new Lang.Class({ let icon = new St.Icon({ icon_name: iconName, icon_type: St.IconType.SYMBOLIC, - icon_size: this._source.ICON_SIZE - }); + icon_size: MessageTray.NOTIFICATION_ICON_SIZE }); device._notification = new MessageTray.Notification(this._source, title, text, { icon: icon }); device._notification.setUrgency(urgency);