From 3003dc1435e2cc964842991ebb01e2f849a5a9a3 Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Tue, 29 Jul 2025 17:14:11 -0400 Subject: [PATCH] animate popup size --- widgets/StyledPopupWindow.qml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/widgets/StyledPopupWindow.qml b/widgets/StyledPopupWindow.qml index f409be8..924001a 100644 --- a/widgets/StyledPopupWindow.qml +++ b/widgets/StyledPopupWindow.qml @@ -14,7 +14,17 @@ PopupWindow { color: "transparent" implicitWidth: background.width + Behavior on implicitWidth { + NumberAnimation { + duration: 100 + } + } implicitHeight: background.height + Behavior on implicitHeight { + NumberAnimation { + duration: 100 + } + } WrapperRectangle { id: background