summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@samsung.com>2019-09-24 16:59:56 -0400
committerMike Blumenkrantz <zmike@samsung.com>2019-09-24 17:12:01 -0400
commit3d9b2f66665783d653b2124aee749a9af767579c (patch)
tree6acc073b8eed2601b1fc880013b10e09e912819e /data
parent63358e42862ba6bfa168ce442fde87ec794becf4 (diff)
downloadefl-3d9b2f66665783d653b2124aee749a9af767579c.tar.gz
efl_ui/alert_popup: rename show/hide signals to visible,on/off
Summary: this is consistent with the efl api ref T8231 Depends on D10081 Reviewers: segfaultxavi, cedric Reviewed By: cedric Subscribers: segfaultxavi, cedric, #reviewers, #committers Tags: #efl Maniphest Tasks: T8231 Differential Revision: https://phab.enlightenment.org/D10095
Diffstat (limited to 'data')
-rw-r--r--data/elementary/themes/edc/efl/popup.edc10
1 files changed, 8 insertions, 2 deletions
diff --git a/data/elementary/themes/edc/efl/popup.edc b/data/elementary/themes/edc/efl/popup.edc
index 22f1a94507..462fe29365 100644
--- a/data/elementary/themes/edc/efl/popup.edc
+++ b/data/elementary/themes/edc/efl/popup.edc
@@ -106,13 +106,19 @@ group { "efl/alert_popup"; data.item: "version" "123";
}
programs {
program {
- signal: "efl,title,show"; source: "efl";
+ signal: "efl,title,visible,on"; source: "efl";
action: STATE_SET "title_visible" 0.0;
target: "title_bg";
target: "efl.text.title";
}
program {
- signal: "efl,buttons,show"; source: "efl";
+ signal: "efl,title,visible,off"; source: "efl";
+ action: STATE_SET "default" 0.0;
+ target: "title_bg";
+ target: "efl.text.title";
+ }
+ program {
+ signal: "efl,buttons,visible,on"; source: "efl";
action: STATE_SET "button_visible" 0.0;
target: "efl.buttons";
}