diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-24 16:42:03 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-24 16:42:03 +1000 |
| commit | 9dcdee9cfcade554748b3f5d16696ad7f0b7def9 (patch) | |
| tree | d3d23d96600eeccac56d61f41e263f8ca761b5da /modules/bar | |
| parent | bar: better handling for named workspaces (diff) | |
| download | caelestia-shell-9dcdee9cfcade554748b3f5d16696ad7f0b7def9.tar.gz caelestia-shell-9dcdee9cfcade554748b3f5d16696ad7f0b7def9.tar.bz2 caelestia-shell-9dcdee9cfcade554748b3f5d16696ad7f0b7def9.zip | |
internal: add anim component
No inlining
Diffstat (limited to 'modules/bar')
| -rw-r--r-- | modules/bar/components/workspaces/OccupiedBg.qml | 6 | ||||
| -rw-r--r-- | modules/bar/components/workspaces/SpecialWorkspaces.qml | 6 | ||||
| -rw-r--r-- | modules/bar/components/workspaces/Workspace.qml | 6 | ||||
| -rw-r--r-- | modules/bar/components/workspaces/Workspaces.qml | 6 | ||||
| -rw-r--r-- | modules/bar/popouts/Bluetooth.qml | 6 | ||||
| -rw-r--r-- | modules/bar/popouts/Content.qml | 7 | ||||
| -rw-r--r-- | modules/bar/popouts/Network.qml | 6 |
7 files changed, 1 insertions, 42 deletions
diff --git a/modules/bar/components/workspaces/OccupiedBg.qml b/modules/bar/components/workspaces/OccupiedBg.qml index 5e1c966..0364575 100644 --- a/modules/bar/components/workspaces/OccupiedBg.qml +++ b/modules/bar/components/workspaces/OccupiedBg.qml @@ -86,12 +86,6 @@ Item { } } - component Anim: NumberAnimation { - duration: Appearance.anim.durations.normal - easing.type: Easing.BezierSpline - easing.bezierCurve: Appearance.anim.curves.standard - } - component Pill: QtObject { property int start property int end diff --git a/modules/bar/components/workspaces/SpecialWorkspaces.qml b/modules/bar/components/workspaces/SpecialWorkspaces.qml index 00beff9..5f9202d 100644 --- a/modules/bar/components/workspaces/SpecialWorkspaces.qml +++ b/modules/bar/components/workspaces/SpecialWorkspaces.qml @@ -362,10 +362,4 @@ Item { Hypr.dispatch("togglespecialworkspace special"); } } - - component Anim: NumberAnimation { - duration: Appearance.anim.durations.normal - easing.type: Easing.BezierSpline - easing.bezierCurve: Appearance.anim.curves.standard - } } diff --git a/modules/bar/components/workspaces/Workspace.qml b/modules/bar/components/workspaces/Workspace.qml index 612edb7..b4e6b40 100644 --- a/modules/bar/components/workspaces/Workspace.qml +++ b/modules/bar/components/workspaces/Workspace.qml @@ -98,10 +98,4 @@ ColumnLayout { Behavior on Layout.preferredHeight { Anim {} } - - component Anim: NumberAnimation { - duration: Appearance.anim.durations.normal - easing.type: Easing.BezierSpline - easing.bezierCurve: Appearance.anim.curves.standard - } } diff --git a/modules/bar/components/workspaces/Workspaces.qml b/modules/bar/components/workspaces/Workspaces.qml index 192d297..b146aae 100644 --- a/modules/bar/components/workspaces/Workspaces.qml +++ b/modules/bar/components/workspaces/Workspaces.qml @@ -137,10 +137,4 @@ StyledClippingRect { duration: Appearance.anim.durations.small } } - - component Anim: NumberAnimation { - duration: Appearance.anim.durations.normal - easing.type: Easing.BezierSpline - easing.bezierCurve: Appearance.anim.curves.standard - } } diff --git a/modules/bar/popouts/Bluetooth.qml b/modules/bar/popouts/Bluetooth.qml index 22bdc77..e623eae 100644 --- a/modules/bar/popouts/Bluetooth.qml +++ b/modules/bar/popouts/Bluetooth.qml @@ -218,10 +218,4 @@ ColumnLayout { id: toggle } } - - component Anim: NumberAnimation { - duration: Appearance.anim.durations.normal - easing.type: Easing.BezierSpline - easing.bezierCurve: Appearance.anim.curves.standard - } } diff --git a/modules/bar/popouts/Content.qml b/modules/bar/popouts/Content.qml index b8fcbc5..f197e20 100644 --- a/modules/bar/popouts/Content.qml +++ b/modules/bar/popouts/Content.qml @@ -1,5 +1,6 @@ pragma ComponentBehavior: Bound +import qs.components import qs.config import Quickshell import Quickshell.Services.SystemTray @@ -151,10 +152,4 @@ Item { } ] } - - component Anim: NumberAnimation { - duration: Appearance.anim.durations.normal - easing.type: Easing.BezierSpline - easing.bezierCurve: Appearance.anim.curves.standard - } } diff --git a/modules/bar/popouts/Network.qml b/modules/bar/popouts/Network.qml index 35146aa..21d1913 100644 --- a/modules/bar/popouts/Network.qml +++ b/modules/bar/popouts/Network.qml @@ -226,10 +226,4 @@ ColumnLayout { id: toggle } } - - component Anim: NumberAnimation { - duration: Appearance.anim.durations.normal - easing.type: Easing.BezierSpline - easing.bezierCurve: Appearance.anim.curves.standard - } } |