From 67cffa854d8621f1fa23c1a8ddb34c3620b713f4 Mon Sep 17 00:00:00 2001 From: miruka Date: Wed, 6 Nov 2019 16:11:12 -0400 Subject: [PATCH] EventImage: fix empty bubble in the corner --- src/qml/Chat/Timeline/EventImage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/Chat/Timeline/EventImage.qml b/src/qml/Chat/Timeline/EventImage.qml index 737c3a45..be5e954e 100644 --- a/src/qml/Chat/Timeline/EventImage.qml +++ b/src/qml/Chat/Timeline/EventImage.qml @@ -67,7 +67,7 @@ HMxcImage { EventImageTextBubble { anchors.right: parent.right anchors.bottom: parent.bottom - text: [loader.showDate, loader.showLocalEcho].join(" ") + text: [loader.showDate, loader.showLocalEcho].join(" ").trim() textFormat: Text.StyledText } }