diff options
author | tastytea <tastytea@tastytea.de> | 2022-02-04 20:51:30 +0100 |
---|---|---|
committer | tastytea <tastytea@tastytea.de> | 2022-02-04 23:40:40 +0100 |
commit | 2815ad040801cd4a0a0d31a72299b699fb924737 (patch) | |
tree | c38c3053d6c741e14ccf0912dd6e077e57952fda /resources/qml/dialogs | |
parent | Show widgets as links (diff) | |
download | nheko-2815ad040801cd4a0a0d31a72299b699fb924737.tar.xz |
Fix width of room name to dialog width
Diffstat (limited to 'resources/qml/dialogs')
-rw-r--r-- | resources/qml/dialogs/RoomSettings.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/qml/dialogs/RoomSettings.qml b/resources/qml/dialogs/RoomSettings.qml index 48d2e2b7..fad7b4c7 100644 --- a/resources/qml/dialogs/RoomSettings.qml +++ b/resources/qml/dialogs/RoomSettings.qml @@ -100,7 +100,8 @@ ApplicationWindow { MatrixText { text: roomSettings.roomName font.pixelSize: fontMetrics.font.pixelSize * 2 - Layout.alignment: Qt.AlignHCenter + Layout.fillWidth: true + horizontalAlignment: TextEdit.AlignHCenter } MatrixText { |