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.
This commit is contained in:
Carl Schwan
2021-05-20 16:55:50 +02:00
parent 773e633867
commit b4cb3259e1

View File

@@ -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"