diff options
author | lukefromdc <[email protected]> | 2017-12-27 14:09:24 -0500 |
---|---|---|
committer | lukefromdc <[email protected]> | 2017-12-27 14:09:24 -0500 |
commit | e5c8646d8f6167fe2d3634a4604a1bf9ec8ee5af (patch) | |
tree | d3cae3469034ba5e1010d16e5f113888aed539d5 /applets/notification_area/status-notifier | |
parent | a596771e28d67bb83656ee8a1c76341ce03b4640 (diff) | |
download | mate-panel-e5c8646d8f6167fe2d3634a4604a1bf9ec8ee5af.tar.bz2 mate-panel-e5c8646d8f6167fe2d3634a4604a1bf9ec8ee5af.tar.xz |
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
Diffstat (limited to 'applets/notification_area/status-notifier')
-rw-r--r-- | applets/notification_area/status-notifier/sn-item-v0.c | 4 |
1 files changed, 4 insertions, 0 deletions
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*/ |