From ced73759eb90429eef218beb0e4b323bf05cff13 Mon Sep 17 00:00:00 2001 From: lukefromdc Date: Wed, 27 Dec 2017 14:09:24 -0500 Subject: status-notifier: handle wrong-size icons called by path Ensure icons called by filename and path instead of icon-name get scaled to match other tray icons --- applets/notification_area/status-notifier/sn-item-v0.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/applets/notification_area/status-notifier/sn-item-v0.c b/applets/notification_area/status-notifier/sn-item-v0.c index e01d624d..f8657137 100644 --- a/applets/notification_area/status-notifier/sn-item-v0.c +++ b/applets/notification_area/status-notifier/sn-item-v0.c @@ -256,6 +256,10 @@ update (SnItemV0 *v0) if (!pixbuf){ /*try to find icons specified by path and filename*/ pixbuf = gdk_pixbuf_new_from_file(v0->icon_name, NULL); + if (pixbuf){ + /*An icon specified by path and filename may be the wrong size for the tray */ + pixbuf=gdk_pixbuf_scale_simple(pixbuf, icon_size-2, icon_size-2,GDK_INTERP_BILINEAR); + } } if (!pixbuf){ /*deal with missing icon or failure to load icon*/ -- cgit v1.2.1