From ed4204dfc869009ea1f6fc1f3abeaf392333a8e2 Mon Sep 17 00:00:00 2001 From: Maze Date: Sat, 13 Aug 2022 12:40:59 +0200 Subject: [PATCH] Disable animation on side pane --- src/gui/Pages/Chat/Chat.qml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/gui/Pages/Chat/Chat.qml b/src/gui/Pages/Chat/Chat.qml index 5700b6dd..78a9a9bb 100644 --- a/src/gui/Pages/Chat/Chat.qml +++ b/src/gui/Pages/Chat/Chat.qml @@ -116,26 +116,8 @@ Item { sourceComponent: RoomPane { id: roomPane - readonly property alias appearAnimation: appearAnimation - referenceSizeParent: chat maximumSize: chat.width - theme.minimumSupportedWidth * 1.5 - - HNumberAnimation { - id: appearAnimation - target: roomPane.contentTranslation - property: "x" - from: -chat.width + roomPane.width - to: 0 - easing.type: Easing.OutCirc - factor: 2 - running: true - } - - Connections { - target: pageLoader - onRecycled: roomPane.appearAnimation.restart() - } } } }