From b8fa6f06909e31af39c6e70d0870247589f67ba3 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Wed, 6 Aug 2025 15:34:33 +0200 Subject: [PATCH] Fix font sizes --- src/rooms/UserInfo.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rooms/UserInfo.qml b/src/rooms/UserInfo.qml index 4259c2501..c8c5001c0 100644 --- a/src/rooms/UserInfo.qml +++ b/src/rooms/UserInfo.qml @@ -67,7 +67,7 @@ RowLayout { id: displayNameLabel Layout.fillWidth: true text: root.connection.localUser.displayName - font.pointSize: Kirigami.Settings.isMobile ? Kirigami.Theme.smallFont : Kirigami.Theme.defaultFont + font: Kirigami.Settings.isMobile ? Kirigami.Theme.smallFont : Kirigami.Theme.defaultFont textFormat: Text.PlainText elide: Text.ElideRight }