summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2022-01-19 11:52:36 +0000
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2022-01-19 11:52:36 +0000
commitdcc02e3bd227a97bc5e7984f3b2dc5b868d93787 (patch)
treea779e5cd85e7eee245d7e4ecf8e2b86d97a9d23d
parent264b59c42fdb2a926a28eb054591bdb8f81a68ce (diff)
downloadenlightenment-dcc02e3bd227a97bc5e7984f3b2dc5b868d93787.tar.gz
notification - fix shadow around extra notifications when all shown
if you show notifications on all screens the extra ones not on the current screen get a shadow - this is wrong. this fixes that @fix
-rw-r--r--src/modules/notification/e_mod_popup.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/notification/e_mod_popup.c b/src/modules/notification/e_mod_popup.c
index 4ca3456d76..1a1a5cf5f1 100644
--- a/src/modules/notification/e_mod_popup.c
+++ b/src/modules/notification/e_mod_popup.c
@@ -342,6 +342,7 @@ _notification_popup_new(E_Notification_Notify *n, unsigned id)
if (zone == e_comp_object_util_zone_get(popup->win)) continue;
o = e_comp_object_util_mirror_add(popup->theme);
o = e_comp_object_util_add(o, E_COMP_OBJECT_TYPE_POPUP);
+ edje_object_signal_emit(o, "e,state,shadow,off", "e");
evas_object_name_set(o, "notification_mirror");
evas_object_data_set(o, "zone", zone);
evas_object_geometry_get(popup->win, NULL, NULL, &w, &h);