summaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorlukefromdc <[email protected]>2017-12-27 14:09:24 -0500
committerlukefromdc <[email protected]>2017-12-27 14:09:24 -0500
commite5c8646d8f6167fe2d3634a4604a1bf9ec8ee5af (patch)
treed3cae3469034ba5e1010d16e5f113888aed539d5 /applets
parenta596771e28d67bb83656ee8a1c76341ce03b4640 (diff)
downloadmate-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')
-rw-r--r--applets/notification_area/status-notifier/sn-item-v0.c4
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*/