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() - } } } }