From 898706a119720f6ebbfc1705f140c02eb86577cb Mon Sep 17 00:00:00 2001 From: HellAholic Date: Mon, 16 Feb 2026 20:44:23 +0100 Subject: [PATCH] Set opacity to 1 and remove transition --- UM/Qt/qml/UM/MessageStack.qml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/UM/Qt/qml/UM/MessageStack.qml b/UM/Qt/qml/UM/MessageStack.qml index fbe36d625..16a167cf5 100644 --- a/UM/Qt/qml/UM/MessageStack.qml +++ b/UM/Qt/qml/UM/MessageStack.qml @@ -68,6 +68,7 @@ ListView width: UM.Theme.getSize("message").width // Height is the size of the children + a margin on top & bottom. height: childrenRect.height + 2 * UM.Theme.getSize("default_margin").height + opacity: 1 anchors.horizontalCenter: parent !== null ? parent.horizontalCenter : undefined @@ -433,11 +434,6 @@ ListView } } - add: Transition - { - NumberAnimation { property: "opacity"; from: 0; to: 1; duration: 200; } - } - displaced: Transition { NumberAnimation { property: "y"; duration: 200; }