From 2f42377479025d27485461d732bc8b5b230ce8e8 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 18 Sep 2025 13:30:49 +1000 Subject: launcher: fix open anim Fixes #639 --- modules/launcher/Wrapper.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/launcher/Wrapper.qml b/modules/launcher/Wrapper.qml index 3312d5a..d62d726 100644 --- a/modules/launcher/Wrapper.qml +++ b/modules/launcher/Wrapper.qml @@ -98,9 +98,13 @@ Item { content.visible = false; content.active = true; } else { - root.contentHeight = content.implicitHeight; + root.contentHeight = Math.min(root.maxHeight, content.implicitHeight); content.active = Qt.binding(() => root.shouldBeActive || root.visible); content.visible = true; + if (showAnim.running) { + showAnim.stop(); + showAnim.start(); + } } } } -- cgit v1.2.3-freya