From eb582424b92902b8a3121728a107e1c731c5d7a1 Mon Sep 17 00:00:00 2001 From: miruka Date: Sun, 27 Oct 2019 14:51:46 -0400 Subject: [PATCH] Ensure typing bar is invisible when reduced --- src/qml/Chat/TypingMembersBar.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qml/Chat/TypingMembersBar.qml b/src/qml/Chat/TypingMembersBar.qml index 69c69d4e..0825096f 100644 --- a/src/qml/Chat/TypingMembersBar.qml +++ b/src/qml/Chat/TypingMembersBar.qml @@ -9,6 +9,7 @@ Rectangle { color: theme.chat.typingMembers.background implicitHeight: typingLabel.text ? rowLayout.height : 0 + opacity: implicitHeight ? 1 : 0 Behavior on implicitHeight { HNumberAnimation {} }