diff options
author | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 2013-01-14 13:01:15 +0000 |
---|---|---|
committer | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 2013-01-14 13:01:15 +0000 |
commit | 727935e20031a1818fc2256cb563871f5b1c4335 (patch) | |
tree | 2546d73484a67ef35c4a0b8b2a165455e94620b0 /data/themes/edc | |
parent | 839a2f3f15eee2ca8d897f7d21daa182b2a5302a (diff) | |
download | enlightenment-727935e20031a1818fc2256cb563871f5b1c4335.tar.gz enlightenment-727935e20031a1818fc2256cb563871f5b1c4335.tar.xz enlightenment-727935e20031a1818fc2256cb563871f5b1c4335.zip |
sometimes a man doesn't know what he's doing when he's working on comp themes. that man is me.
SVN revision: 82760
Diffstat (limited to 'data/themes/edc')
-rw-r--r-- | data/themes/edc/comp.edc | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/data/themes/edc/comp.edc b/data/themes/edc/comp.edc index d7c6e984e..eb52457bf 100644 --- a/data/themes/edc/comp.edc +++ b/data/themes/edc/comp.edc @@ -196,18 +196,20 @@ group { name: "e/modules/comp/screen/overlay/noeffects"; program { name: "suspend"; signal: "e,state,sys,suspend"; source: "e"; + action: SIGNAL_EMIT "e,state,sys,suspend,done" "e"; + after: "action_done"; + } + program { + name: "action_done"; action: STATE_SET "visible" 0.0; transition: ACCELERATE 0 CURRENT; target: "suspender"; - action: SIGNAL_EMIT "e,state,sys,suspend,done" "e"; } program { name: "hibernate"; signal: "e,state,sys,hibernate"; source: "e"; - action: STATE_SET "visible" 0.0; - transition: ACCELERATE 0 CURRENT; - target: "suspender"; action: SIGNAL_EMIT "e,state,sys,hibernate,done" "e"; + after: "action_done"; } program { name: "resume"; @@ -216,26 +218,20 @@ group { name: "e/modules/comp/screen/overlay/noeffects"; program { name: "reboot"; signal: "e,state,sys,reboot"; source: "e"; - action: STATE_SET "visible" 0.0; - transition: ACCELERATE 0 CURRENT; - target: "suspender"; action: SIGNAL_EMIT "e,state,sys,reboot,done" "e"; + after: "action_done"; } program { name: "halt"; signal: "e,state,sys,halt"; source: "e"; - action: STATE_SET "visible" 0.0; - transition: ACCELERATE 0 CURRENT; - target: "suspender"; action: SIGNAL_EMIT "e,state,sys,halt,done" "e"; + after: "action_done"; } program { name: "logout"; signal: "e,state,sys,logout"; source: "e"; - action: STATE_SET "visible" 0.0; - transition: ACCELERATE 0 CURRENT; - target: "suspender"; action: SIGNAL_EMIT "e,state,sys,logout,done" "e"; + after: "action_done"; } } } @@ -385,6 +381,10 @@ group { name: "e/comp/default"; action: STATE_SET "default" 0.0; transition: SINUSOIDAL 0.1; target: "focus-clipper"; + after: "focus_off2"; + } + program { + name: "focus_off2"; action: STATE_SET "default" 0.0; transition: SINUSOIDAL 0.4; target: "glow"; |