summaryrefslogtreecommitdiff
path: root/modules/bar/components/workspaces
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-17 23:22:34 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-17 23:22:34 +1000
commit43f8c36677f80a63abfa9b858586258a734dab17 (patch)
tree7574a980b65b9504f37578529896a1dcc84aab62 /modules/bar/components/workspaces
parentlauncher: fix size when rapid close and reopen (diff)
downloadcaelestia-shell-43f8c36677f80a63abfa9b858586258a734dab17.tar.gz
caelestia-shell-43f8c36677f80a63abfa9b858586258a734dab17.tar.bz2
caelestia-shell-43f8c36677f80a63abfa9b858586258a734dab17.zip
bar: fix workspaces and tray icons
Should fix the anims not finishing
Diffstat (limited to 'modules/bar/components/workspaces')
-rw-r--r--modules/bar/components/workspaces/Workspace.qml11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/bar/components/workspaces/Workspace.qml b/modules/bar/components/workspaces/Workspace.qml
index 6cf5c40..e50f65c 100644
--- a/modules/bar/components/workspaces/Workspace.qml
+++ b/modules/bar/components/workspaces/Workspace.qml
@@ -62,6 +62,17 @@ Item {
}
}
+ move: Transition {
+ Anim {
+ properties: "scale"
+ to: 1
+ easing.bezierCurve: Appearance.anim.curves.standardDecel
+ }
+ Anim {
+ properties: "x,y"
+ }
+ }
+
Repeater {
model: ScriptModel {
values: Hyprland.clients.filter(c => c.workspace?.id === root.ws)