diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-13 15:50:04 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-13 15:50:04 +1000 |
| commit | 98a709af78b4d3e7a41f40526d9ac0f99608e36f (patch) | |
| tree | bb2a2b29784fd104e9ff731467b9ea33a834166a /components/controls/CircularProgress.qml | |
| parent | plugin: refactor into modules (diff) | |
| download | caelestia-shell-98a709af78b4d3e7a41f40526d9ac0f99608e36f.tar.gz caelestia-shell-98a709af78b4d3e7a41f40526d9ac0f99608e36f.tar.bz2 caelestia-shell-98a709af78b4d3e7a41f40526d9ac0f99608e36f.zip | |
plugin/managers: add CircularIndicatorManager
Basically move StyledBusyIndicator -> CircularIndicator + logic for it from js -> c++
Diffstat (limited to 'components/controls/CircularProgress.qml')
| -rw-r--r-- | components/controls/CircularProgress.qml | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/components/controls/CircularProgress.qml b/components/controls/CircularProgress.qml index 209d53b..a15cd90 100644 --- a/components/controls/CircularProgress.qml +++ b/components/controls/CircularProgress.qml @@ -1,3 +1,4 @@ +import ".." import qs.services import qs.config import QtQuick @@ -38,10 +39,8 @@ Shape { } Behavior on strokeColor { - ColorAnimation { + CAnim { duration: Appearance.anim.durations.large - easing.type: Easing.BezierSpline - easing.bezierCurve: Appearance.anim.curves.standard } } } @@ -62,10 +61,8 @@ Shape { } Behavior on strokeColor { - ColorAnimation { + CAnim { duration: Appearance.anim.durations.large - easing.type: Easing.BezierSpline - easing.bezierCurve: Appearance.anim.curves.standard } } } |