raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=c23015ac927c6faa60d8b50295654ec651a90619
commit c23015ac927c6faa60d8b50295654ec651a90619 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Fri Nov 27 11:17:33 2020 +0000 systray - be more explicit with what we are looking for in logs --- src/modules/systray/e_mod_notifier_host_dbus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/systray/e_mod_notifier_host_dbus.c b/src/modules/systray/e_mod_notifier_host_dbus.c index 6efbed9a1..b2add4021 100644 --- a/src/modules/systray/e_mod_notifier_host_dbus.c +++ b/src/modules/systray/e_mod_notifier_host_dbus.c @@ -74,7 +74,7 @@ icon_pixmap_deserialize(Eldbus_Message_Iter *variant, uint32_t **data, int *w, i uint32_t *img; int len; - printf("SYSTRAY: serialized image data is %ix%i\n", tmpw, tmph); + printf("SYSTRAY: serialized image data is %ix%i... (looking for bigger than %ix%i)\n", tmpw, tmph, *w, *h); //only take this img if it has a higher resolution if ((tmpw > *w) || (tmph > *h)) { --
