From b4cb3259e15eed09075e6d85f50cd73e889a03c9 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Thu, 20 May 2021 16:55:50 +0200 Subject: [PATCH] Remove list view transitions This was causing weird visual bugs (semi opaque bugs) and white space at the botton of the list view after sending a message. --- imports/NeoChat/Page/RoomPage.qml | 37 ------------------------------- 1 file changed, 37 deletions(-) diff --git a/imports/NeoChat/Page/RoomPage.qml b/imports/NeoChat/Page/RoomPage.qml index 67f412f74..aafb54723 100644 --- a/imports/NeoChat/Page/RoomPage.qml +++ b/imports/NeoChat/Page/RoomPage.qml @@ -322,43 +322,6 @@ Kirigami.ScrollablePage { sourceModel: messageEventModel } - populate: Transition { - NumberAnimation { - property: "opacity"; from: 0; to: 1 - duration: Kirigami.Units.shortDuration - } - } - - add: Transition { - NumberAnimation { - property: "opacity"; from: 0; to: 1 - duration: Kirigami.Units.shortDuration - } - } - - move: Transition { - NumberAnimation { - property: "y" - duration: Kirigami.Units.shortDuration - } - NumberAnimation { - property: "opacity"; to: 1 - duration: Kirigami.Units.shortDuration - } - } - - displaced: Transition { - NumberAnimation { - property: "y" - duration: Kirigami.Units.shortDuration - easing.type: Easing.OutQuad - } - NumberAnimation { - property: "opacity"; to: 1 - duration: Kirigami.Units.shortDuration - } - } - delegate: DelegateChooser { id: timelineDelegateChooser role: "eventType"