summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2020-12-13 16:05:48 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2020-12-13 16:05:48 +0100
commit703950273b4629dff42d39292c219e244e320eff (patch)
treeb6d06ad7441c46c36a562e123b15e3dd096a9852 /resources/qml
parentDon't sync db on every sync (diff)
downloadnheko-703950273b4629dff42d39292c219e244e320eff.tar.xz
Don't overflow room name
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/TopBar.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/resources/qml/TopBar.qml b/resources/qml/TopBar.qml

index 2015517c..941f269c 100644 --- a/resources/qml/TopBar.qml +++ b/resources/qml/TopBar.qml
@@ -68,6 +68,8 @@ Rectangle { color: colors.text font.pointSize: fontMetrics.font.pointSize * 1.1 text: room ? room.roomName : qsTr("No room selected") + maximumLineCount: 1 + elide: Text.ElideRight MouseArea { anchors.fill: parent