From 7b92264ef6e254a3545bae92f7449c5e058526c1 Mon Sep 17 00:00:00 2001 From: miruka Date: Sat, 6 Jul 2019 17:35:51 -0400 Subject: [PATCH] Animate TypingMembersBar --- src/qml/Chat/TypingMembersBar.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/qml/Chat/TypingMembersBar.qml b/src/qml/Chat/TypingMembersBar.qml index 5f671f6f..1ef9ed95 100644 --- a/src/qml/Chat/TypingMembersBar.qml +++ b/src/qml/Chat/TypingMembersBar.qml @@ -5,9 +5,13 @@ import "../Base" HRectangle { property alias label: typingLabel + color: HStyle.chat.typingMembers.background implicitWidth: childrenRect.width implicitHeight: typingLabel.text ? childrenRect.height : 0 - color: HStyle.chat.typingMembers.background + + Behavior on implicitHeight { + NumberAnimation { duration: HStyle.animationDuration } + } Row { spacing: 8