mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 11:45:36 +02:00
Fix a bug where hover events incorrectly propagate under popups
This commit is contained in:
parent
bf5b875382
commit
19235b8d94
10 changed files with 14 additions and 0 deletions
|
@ -571,6 +571,7 @@ Rectangle {
|
|||
MouseArea {
|
||||
anchors.fill: parent;
|
||||
propagateComposedEvents: false;
|
||||
hoverEnabled: true;
|
||||
}
|
||||
|
||||
RalewayBold {
|
||||
|
|
|
@ -45,6 +45,7 @@ Rectangle {
|
|||
MouseArea {
|
||||
anchors.fill: parent;
|
||||
propagateComposedEvents: false;
|
||||
hoverEnabled: true;
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
|
|
|
@ -44,6 +44,7 @@ Rectangle {
|
|||
MouseArea {
|
||||
anchors.fill: parent;
|
||||
propagateComposedEvents: false;
|
||||
hoverEnabled: true;
|
||||
}
|
||||
|
||||
Item {
|
||||
|
|
|
@ -119,6 +119,7 @@ Rectangle {
|
|||
MouseArea {
|
||||
anchors.fill: parent;
|
||||
propagateComposedEvents: false;
|
||||
hoverEnabled: true;
|
||||
}
|
||||
|
||||
Image {
|
||||
|
|
|
@ -316,6 +316,7 @@ Item {
|
|||
MouseArea {
|
||||
anchors.fill: parent;
|
||||
propagateComposedEvents: false;
|
||||
hoverEnabled: true;
|
||||
}
|
||||
|
||||
RalewayBold {
|
||||
|
|
|
@ -66,6 +66,7 @@ Item {
|
|||
MouseArea {
|
||||
anchors.fill: parent;
|
||||
propagateComposedEvents: false;
|
||||
hoverEnabled: true;
|
||||
}
|
||||
|
||||
// This will cause a bug -- if you bring up passphrase selection in HUD mode while
|
||||
|
|
|
@ -34,6 +34,7 @@ Item {
|
|||
MouseArea {
|
||||
anchors.fill: parent;
|
||||
propagateComposedEvents: false;
|
||||
hoverEnabled: true;
|
||||
}
|
||||
|
||||
Connections {
|
||||
|
|
|
@ -306,6 +306,7 @@ Item {
|
|||
MouseArea {
|
||||
anchors.fill: parent;
|
||||
propagateComposedEvents: false;
|
||||
hoverEnabled: true;
|
||||
}
|
||||
|
||||
RalewayBold {
|
||||
|
|
|
@ -394,6 +394,7 @@ Item {
|
|||
MouseArea {
|
||||
anchors.fill: parent;
|
||||
propagateComposedEvents: false;
|
||||
hoverEnabled: true;
|
||||
}
|
||||
|
||||
Image {
|
||||
|
|
|
@ -43,6 +43,7 @@ Item {
|
|||
width: parent.width;
|
||||
height: (root.shouldShowTopAndBottomOfWallet || root.shouldShowTopOfWallet) ? parent.height : parent.height - root.parentAppTitleBarHeight - root.parentAppNavBarHeight;
|
||||
propagateComposedEvents: false;
|
||||
hoverEnabled: true;
|
||||
}
|
||||
|
||||
Connections {
|
||||
|
@ -326,6 +327,7 @@ Item {
|
|||
MouseArea {
|
||||
anchors.fill: parent;
|
||||
propagateComposedEvents: false;
|
||||
hoverEnabled: true;
|
||||
}
|
||||
|
||||
ListModel {
|
||||
|
@ -477,6 +479,7 @@ Item {
|
|||
enabled: connectionsList.currentIndex !== index;
|
||||
anchors.fill: parent;
|
||||
propagateComposedEvents: false;
|
||||
hoverEnabled: true;
|
||||
onClicked: {
|
||||
connectionsList.currentIndex = index;
|
||||
}
|
||||
|
@ -505,6 +508,7 @@ Item {
|
|||
MouseArea {
|
||||
anchors.fill: parent;
|
||||
propagateComposedEvents: false;
|
||||
hoverEnabled: true;
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
|
@ -1059,6 +1063,7 @@ Item {
|
|||
MouseArea {
|
||||
anchors.fill: parent;
|
||||
propagateComposedEvents: false;
|
||||
hoverEnabled: true;
|
||||
}
|
||||
|
||||
AnimatedImage {
|
||||
|
|
Loading…
Reference in a new issue