Sale Djenic 83d6817f70 feature(@desktop/chat): support jumping to search result message that is not currently loaded in memory
Crash adding public chat which is caused by changes applied to this feature is fixed.

Fixes: #3005
2021-08-05 14:35:46 -04:00

36 lines
830 B
QML

import QtQuick 2.13
import "../../../../imports"
import "../../../../shared"
Rectangle {
property string channel: "status"
border.width: 1
radius: 8
width: children[0].width + 10
height: 32
border.color: Style.current.border
color: Style.current.transparent
StyledText {
id: suggestedChannelText
text: "#" + channel
font.weight: Font.Medium
color: Style.current.blue;
anchors.top: parent.top;
anchors.topMargin: 5;
anchors.left: parent.left;
anchors.leftMargin: 5;
horizontalAlignment: Text.AlignLeft;
font.pixelSize: 15
}
MouseArea {
anchors.fill: parent
onClicked: {
chatsModel.channelView.joinPublicChat(channel);
}
cursorShape: Qt.PointingHandCursor
}
}