raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=61a462c04d47f8cc2b7e9b07a704f1c98874dc90
commit 61a462c04d47f8cc2b7e9b07a704f1c98874dc90 Author: Carsten Haitzler <[email protected]> Date: Sun Dec 5 19:57:15 2021 +0000 elm theme - make busy fade follow duration cactor --- data/elementary/themes/macros.edc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/elementary/themes/macros.edc b/data/elementary/themes/macros.edc index 0bf051e7e6..fe104b5da4 100644 --- a/data/elementary/themes/macros.edc +++ b/data/elementary/themes/macros.edc @@ -174,7 +174,7 @@ #define BUSY(x, start1, start2, stop1, stop2) \ program { signal: start1; source: start2; \ action: STATE_SET "visible" 0.0; \ - transition: SINUSOIDAL 1.0; \ + transition: SINUSOIDAL 1.0 USE_DURATION_FACTOR 1; \ target: "busy"; } \ program { signal: start1; source: start2; \ action: STATE_SET "default" 0.0; \ @@ -186,7 +186,7 @@ after: "busy-p31"; } \ program { signal: stop1; source: stop2; \ action: STATE_SET "default" 0.0; \ - transition: SINUSOIDAL 1.0; \ + transition: SINUSOIDAL 1.0 USE_DURATION_FACTOR 1; \ target: "busy"; \ after: "busy_stop2"; } \ program { name: "busy_stop2"; \ --
