diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-04-19 11:20:34 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-04-19 11:20:52 +0200 |
commit | d6109b95fb979bb53baf4a2b71dcce822c9feaf6 (patch) | |
tree | 0c9f16fd69790d7a303ec5800fee1ed30b82edc0 /resources/qml/TopBar.qml | |
parent | Bump version to 0.8.2 (diff) | |
download | nheko-d6109b95fb979bb53baf4a2b71dcce822c9feaf6.tar.xz |
Escape html in topics and show line breaks in the settings
Diffstat (limited to 'resources/qml/TopBar.qml')
-rw-r--r-- | resources/qml/TopBar.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/qml/TopBar.qml b/resources/qml/TopBar.qml index 188f456b..f5c5c84a 100644 --- a/resources/qml/TopBar.qml +++ b/resources/qml/TopBar.qml @@ -72,7 +72,8 @@ Rectangle { font.pointSize: fontMetrics.font.pointSize * 1.1 text: room ? room.roomName : qsTr("No room selected") maximumLineCount: 1 - elide: Text.ElideRight + elide: Text.ElideRight + textFormat: Text.RichText } MatrixText { |