discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=f6e6fb112afb5f165ff2bbd789fc2763450c625f
commit f6e6fb112afb5f165ff2bbd789fc2763450c625f Author: Mike Blumenkrantz <zm...@samsung.com> Date: Mon Jan 27 09:46:22 2014 -0500 reduce iconify animation durations for fast comp effect groups T860 --- data/themes/edc/comp.edc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/data/themes/edc/comp.edc b/data/themes/edc/comp.edc index b5b9165..9c96f12 100644 --- a/data/themes/edc/comp.edc +++ b/data/themes/edc/comp.edc @@ -498,6 +498,12 @@ group { name: "e/comp/frame/rotate/fast"; program { name: "focus_off3"; transition: LINEAR 0; } + program { name: "iconify"; + transition: DECELERATE 0.15 CURRENT; + } + program { name: "uniconify"; + transition: DECELERATE 0.15 CURRENT; + } } } @@ -535,6 +541,12 @@ group { name: "e/comp/frame/flip/fast"; program { name: "focus_off3"; transition: LINEAR 0; } + program { name: "iconify"; + transition: DECELERATE 0.15 CURRENT; + } + program { name: "uniconify"; + transition: DECELERATE 0.15 CURRENT; + } } } @@ -608,6 +620,12 @@ group { name: "e/comp/frame/default/fast"; name: "focus_off"; transition: SINUSOIDAL 0; } + program { name: "iconify"; + transition: DECELERATE 0.15 CURRENT; + } + program { name: "uniconify"; + transition: DECELERATE 0.15 CURRENT; + } } } --