mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
Fixed SevenStart hover issue
This commit is contained in:
parent
08a349c664
commit
ffff4bdb7b
1 changed files with 3 additions and 5 deletions
|
@ -77,13 +77,11 @@ Item {
|
||||||
id: mouseArea
|
id: mouseArea
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
hoverEnabled: true
|
hoverEnabled: true
|
||||||
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
acceptedButtons: Qt.LeftButton// | Qt.RightButton
|
||||||
propagateComposedEvents: true
|
//propagateComposedEvents: true
|
||||||
onPressed: mouse => {
|
onPressed: mouse => {
|
||||||
if(mouse.button === Qt.LeftButton)
|
//if(mouse.button === Qt.LeftButton)
|
||||||
root.showMenu();
|
root.showMenu();
|
||||||
else
|
|
||||||
mouse.accepted = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue