mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 22:25:04 -04:00
Solve contacts view onhover bug on android platforms
This commit is contained in:
parent
8ebd0f770f
commit
ddaa03514c
1 changed files with 3 additions and 3 deletions
|
@ -32,18 +32,18 @@ Item
|
|||
property var lastMessageData: ({})
|
||||
property var locale: Qt.locale()
|
||||
|
||||
|
||||
Rectangle
|
||||
{
|
||||
id: contactItem
|
||||
|
||||
anchors.fill: parent
|
||||
color: contactItem.containsMouse ? "lightgrey" : "transparent"
|
||||
color: contactItemArea.containsPress ? "lightgrey" : "transparent"
|
||||
width: parent.width
|
||||
height: parent.height
|
||||
|
||||
MouseArea
|
||||
{
|
||||
id: contactItem
|
||||
id: contactItemArea
|
||||
anchors.fill: parent
|
||||
onClicked:
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue