theme: fix close issue for notification popup

This gives back the ability to close the notification.

fixes T8316
This commit is contained in:
Simon Tischer 2020-01-24 08:40:48 +01:00 committed by Marcel Hollerbach
parent 0e2778f0ca
commit b8ccf5e5e7
1 changed files with 3 additions and 3 deletions

View File

@ -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 {