From a317ecc4fc858e1421fd62c0f8fecc08104d4aa2 Mon Sep 17 00:00:00 2001 From: Black Hat Date: Mon, 15 Oct 2018 10:07:13 +0800 Subject: [PATCH] Fix #87. (It should fix that.) --- imports/Spectral/Panel/RoomDrawer.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/imports/Spectral/Panel/RoomDrawer.qml b/imports/Spectral/Panel/RoomDrawer.qml index fd809403c..26dc0367b 100644 --- a/imports/Spectral/Panel/RoomDrawer.qml +++ b/imports/Spectral/Panel/RoomDrawer.qml @@ -39,6 +39,7 @@ Drawer { Label { Layout.fillWidth: true + wrapMode: Label.Wrap horizontalAlignment: Text.AlignHCenter text: room && room.id ? room.id : "" } @@ -46,6 +47,7 @@ Drawer { Label { Layout.fillWidth: true + wrapMode: Label.Wrap horizontalAlignment: Text.AlignHCenter text: room && room.canonicalAlias ? room.canonicalAlias : "No Canonical Alias" } @@ -53,6 +55,7 @@ Drawer { Label { Layout.fillWidth: true + wrapMode: Label.Wrap horizontalAlignment: Text.AlignHCenter text: room ? room.memberCount + " Members" : "No Member Count" }