From c23015ac927c6faa60d8b50295654ec651a90619 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Fri, 27 Nov 2020 11:17:33 +0000 Subject: [PATCH] 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)) {