summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Tischer <simon@t-tischer.de>2020-01-24 08:40:48 +0100
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2020-01-24 09:17:16 +0100
commitb8ccf5e5e75294ef4c56c0754417af465f3ad319 (patch)
treeafa5c4106147e33dc6dfcd2aaea2f8149f3d7988
parent0e2778f0ca7cee9b167513852e6d505d42684430 (diff)
downloadefl-b8ccf5e5e75294ef4c56c0754417af465f3ad319.tar.gz
theme: fix close issue for notification popup
This gives back the ability to close the notification. fixes T8316
-rw-r--r--data/elementary/themes/edc/notification.edc6
1 files changed, 3 insertions, 3 deletions
diff --git a/data/elementary/themes/edc/notification.edc b/data/elementary/themes/edc/notification.edc
index 63a401b1d3..d8d30be36c 100644
--- a/data/elementary/themes/edc/notification.edc
+++ b/data/elementary/themes/edc/notification.edc
@@ -146,17 +146,17 @@ group { name: "notification/main";
}
programs {
program {
- signal: "mouse,down,1"; source: "e.event.close";
+ signal: "mouse,down,1"; source: "notification.event.close";
action: STATE_SET "selected" 0.0;
target: "close";
}
program {
- signal: "mouse,up,1"; source: "e.event.close";
+ signal: "mouse,up,1"; source: "notification.event.close";
action: STATE_SET "default" 0.0;
target: "close";
}
program {
- signal: "mouse,clicked,1"; source: "e.event.close";
+ signal: "mouse,clicked,1"; source: "notification.event.close";
action: SIGNAL_EMIT "notification,close" "theme";
}
program {