mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
fix(StatusMessageReply): Fix clicking on sender (#10717)
This commit is contained in:
parent
3d5c8f8024
commit
63bbc72b54
@ -62,6 +62,15 @@ Item {
|
|||||||
implicitHeight: messageLayout.implicitHeight
|
implicitHeight: messageLayout.implicitHeight
|
||||||
implicitWidth: messageLayout.implicitWidth
|
implicitWidth: messageLayout.implicitWidth
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
hoverEnabled: true
|
||||||
|
cursorShape: Qt.PointingHandCursor
|
||||||
|
onClicked: {
|
||||||
|
root.messageClicked(mouse)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
id: messageLayout
|
id: messageLayout
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
@ -89,6 +98,19 @@ Item {
|
|||||||
font.pixelSize: Theme.secondaryTextFontSize
|
font.pixelSize: Theme.secondaryTextFontSize
|
||||||
font.weight: Font.Medium
|
font.weight: Font.Medium
|
||||||
text: replyDetails.amISender ? qsTr("You") : replyDetails.sender.displayName
|
text: replyDetails.amISender ? qsTr("You") : replyDetails.sender.displayName
|
||||||
|
font.underline: mouseArea.containsMouse
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
id: mouseArea
|
||||||
|
anchors.fill: parent
|
||||||
|
cursorShape: enabled ? Qt.PointingHandCursor : Qt.ArrowCursor
|
||||||
|
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
||||||
|
enabled: root.profileClickable
|
||||||
|
hoverEnabled: true
|
||||||
|
onClicked: {
|
||||||
|
root.replyProfileClicked(this, mouse)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loader {
|
Loader {
|
||||||
@ -107,7 +129,6 @@ Item {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Loader {
|
Loader {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
asynchronous: true
|
asynchronous: true
|
||||||
@ -149,15 +170,6 @@ Item {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
MouseArea {
|
|
||||||
anchors.fill: parent
|
|
||||||
hoverEnabled: true
|
|
||||||
cursorShape: Qt.PointingHandCursor
|
|
||||||
onClicked: {
|
|
||||||
root.messageClicked(mouse)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user