From: Carsten Haitzler (Rasterman) Date: Fri, 21 Aug 2015 12:37:21 +0000 (+0900) Subject: e - systray - add more sizes to icon hunt to fix missing icons X-Git-Tag: upstream/0.20.0~329 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2e00876a4072f19cc92686aed690f440295583b7;p=platform%2Fupstream%2Fenlightenment.git e - systray - add more sizes to icon hunt to fix missing icons some systray indicator icons are not found because the sizes are not in the list. fix this. this SHOULD actually use our existing efreet icon theme finding to auto-switch file based on size changes. --- diff --git a/src/modules/systray/e_mod_notifier_host.c b/src/modules/systray/e_mod_notifier_host.c index 7c14b19..3fe3340 100644 --- a/src/modules/systray/e_mod_notifier_host.c +++ b/src/modules/systray/e_mod_notifier_host.c @@ -80,7 +80,7 @@ image_load(const char *name, const char *path, Evas_Object *image) for (theme = themes; *theme; theme++) { struct stat st; - unsigned int *i, sizes[] = { 24, 32, 48, 64, 128, 256, 0 }; + unsigned int *i, sizes[] = { 16, 22, 24, 32, 36, 40, 48, 64, 72, 96, 128, 192, 256, 512, 0 }; snprintf(buf, sizeof(buf), "%s/%s", path, *theme); if (stat(buf, &st)) continue;