summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-17 23:07:43 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-17 23:07:43 +1000
commit0a34970bd17d6420f746f7d2ac45c3ecf058c90e (patch)
treeae2c7fc9d4c0a3f84384c6613d7bd1f706b53371
parentlauncher: fix transition between lists (diff)
downloadcaelestia-shell-0a34970bd17d6420f746f7d2ac45c3ecf058c90e.tar.gz
caelestia-shell-0a34970bd17d6420f746f7d2ac45c3ecf058c90e.tar.bz2
caelestia-shell-0a34970bd17d6420f746f7d2ac45c3ecf058c90e.zip
launcher: fix size when rapid close and reopen
Only for when a short period but not super short periods
-rw-r--r--modules/launcher/ContentList.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/launcher/ContentList.qml b/modules/launcher/ContentList.qml
index 3ce39f1..93bb913 100644
--- a/modules/launcher/ContentList.qml
+++ b/modules/launcher/ContentList.qml
@@ -160,6 +160,8 @@ Item {
}
Behavior on implicitWidth {
+ enabled: root.visibilities.launcher
+
NumberAnimation {
duration: Appearance.anim.durations.large
easing.type: Easing.BezierSpline
@@ -168,6 +170,8 @@ Item {
}
Behavior on implicitHeight {
+ enabled: root.visibilities.launcher
+
NumberAnimation {
duration: Appearance.anim.durations.large
easing.type: Easing.BezierSpline