diff --git a/src/StatusQ/Controls/StatusChatInfoButton.qml b/src/StatusQ/Controls/StatusChatInfoButton.qml index 7de26a54..6524bfe5 100644 --- a/src/StatusQ/Controls/StatusChatInfoButton.qml +++ b/src/StatusQ/Controls/StatusChatInfoButton.qml @@ -137,7 +137,10 @@ Rectangle { anchors.leftMargin: statusIcon.visible ? 1 : 0 anchors.top: parent.top - text: statusChatInfoButton.title + text: statusChatInfoButton.type === StatusChatInfoButton.Type.PublicChat && + !statusChatInfoButton.title.startsWith("#") ? + "#" + statusChatInfoButton.title : + statusChatInfoButton.title color: statusChatInfoButton.muted ? Theme.palette.directColor5 : Theme.palette.directColor1 font.pixelSize: 15 font.weight: Font.Medium