diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-17 23:07:43 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-17 23:07:43 +1000 |
| commit | 0a34970bd17d6420f746f7d2ac45c3ecf058c90e (patch) | |
| tree | ae2c7fc9d4c0a3f84384c6613d7bd1f706b53371 /modules/launcher/ContentList.qml | |
| parent | launcher: fix transition between lists (diff) | |
| download | caelestia-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
Diffstat (limited to 'modules/launcher/ContentList.qml')
| -rw-r--r-- | modules/launcher/ContentList.qml | 4 |
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 |