Modified:
branches/e17/bits/gadman.edc
Log:
This was far way too slow.
There shouldn't even be a transition, but i've seen mixed
results.
In some cases, the edje/logic doesn't work if there is no
transition, which leads me to believe some of these values are
hardcoded into the module. This is bad!
Modified: branches/e17/bits/gadman.edc
==============================================================================
--- branches/e17/bits/gadman.edc (original)
+++ branches/e17/bits/gadman.edc Thu Mar 5 00:09:02 2009
@@ -645,7 +645,7 @@
description {
state: "visible" 0.0;
- color: 0 0 0 128;
+ color: 0 0 0 192;
}
}
@@ -693,7 +693,7 @@
signal: "e,state,visibility,show";
source: "e";
action: STATE_SET "visible" 0.0;
- transition: LINEAR 0.4;
+ transition: LINEAR 0.2; /* 0.4 */
target: "bg";
}
@@ -702,7 +702,7 @@
signal: "e,state,visibility,show,now";
source: "e";
action: STATE_SET "visible" 0.0;
- transition: LINEAR 0.4;
+ transition: LINEAR 0.2; /* 0.4 */
target: "bg";
}
@@ -711,7 +711,7 @@
signal: "e,state,visibility,hide";
source: "e";
action: STATE_SET "default" 0.0;
- transition: LINEAR 0.4;
+ transition: LINEAR 0.2; /* 0.4 */
target: "bg";
after: "hide_stop";
}
@@ -731,7 +731,7 @@
signal: "e,state,visibility,show,custom";
source: "e";
action: STATE_SET "visible" 0.0;
- transition: LINEAR 0.4;
+ transition: LINEAR 0.2;
target: "custom_bg";
}
@@ -749,7 +749,7 @@
signal: "e,state,visibility,hide,custom";
source: "e";
action: STATE_SET "default" 0.0;
- transition: LINEAR 0.4;
+ transition: LINEAR 0.2; /* 0.4 */
target: "custom_bg";
after: "hide_stop";
}