From 73e7f3eaf1554ebbec482f2ec529b710b7989a06 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Wed, 16 Nov 2022 20:53:28 +0100 Subject: [PATCH] Make network warning label wrap BUG: 456866 --- src/qml/Component/ChatBox/ChatBox.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/qml/Component/ChatBox/ChatBox.qml b/src/qml/Component/ChatBox/ChatBox.qml index 5e7ab5b39..c07cb0c47 100644 --- a/src/qml/Component/ChatBox/ChatBox.qml +++ b/src/qml/Component/ChatBox/ChatBox.qml @@ -40,6 +40,8 @@ ColumnLayout { Layout.fillWidth: true QQC2.Label { id: networkLabel + width: parent.width + wrapMode: Text.Wrap text: i18n("NeoChat is offline. Please check your network connection.") } }