Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions UM/Qt/qml/UM/MessageStack.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -433,11 +434,6 @@ ListView
}
}

add: Transition
{
NumberAnimation { property: "opacity"; from: 0; to: 1; duration: 200; }
}

displaced: Transition
{
NumberAnimation { property: "y"; duration: 200; }
Expand Down
Loading