diff options
| -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*/ | 
