From 1625908e0699b8f7edec16fcd94956e4c0bb5094 Mon Sep 17 00:00:00 2001 From: PavelS Date: Wed, 21 Sep 2022 12:57:08 +0300 Subject: [PATCH] fix(@desktop/chat): adjust chat name placement Fixes #7353 --- ui/imports/shared/views/chat/ChannelIdentifierView.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/imports/shared/views/chat/ChannelIdentifierView.qml b/ui/imports/shared/views/chat/ChannelIdentifierView.qml index 5d5a3abf8eb..a1afe2e0c47 100644 --- a/ui/imports/shared/views/chat/ChannelIdentifierView.qml +++ b/ui/imports/shared/views/chat/ChannelIdentifierView.qml @@ -42,12 +42,13 @@ Column { StyledText { id: channelName objectName: "channelIdentifierNameText" + width: parent.width wrapMode: Text.Wrap text: root.chatName font.weight: Font.Bold font.pixelSize: 22 color: Style.current.textColor - anchors.horizontalCenter: parent.horizontalCenter + horizontalAlignment: Text.AlignHCenter } StatusBaseText {