From de338607e348b75b95a3375841faa3e85990a1f9 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Wed, 2 Dec 2020 19:19:13 +0100 Subject: [PATCH] fix typo --- imports/NeoChat/Page/RoomListPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imports/NeoChat/Page/RoomListPage.qml b/imports/NeoChat/Page/RoomListPage.qml index 0ff7e3e05..4aceca23e 100644 --- a/imports/NeoChat/Page/RoomListPage.qml +++ b/imports/NeoChat/Page/RoomListPage.qml @@ -151,7 +151,7 @@ Kirigami.ScrollablePage { Layout.alignment: Qt.AlignHCenter text: (lastEvent == "" ? topic : lastEvent).replace(/(\r\n\t|\n|\r\t)/gm," ") - visible: text.length > + visible: text.length > 0 elide: Text.ElideRight wrapMode: Text.NoWrap }