Commit 495dbb6c authored by Nate Weibley's avatar Nate Weibley

Fix opening QML based settings is twitchy and unreliable on Windows touch...

Fix opening QML based settings is twitchy and unreliable on Windows touch (Surface Pro-like) devices
parent 10c782f9
...@@ -114,7 +114,8 @@ Item { ...@@ -114,7 +114,8 @@ Item {
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
onClicked: { onClicked: {
mainWindow.hideLeftMenu() if (!__animateShowDialog.running)
mainWindow.hideLeftMenu()
} }
} }
} }
...@@ -264,7 +265,8 @@ Item { ...@@ -264,7 +265,8 @@ Item {
anchors.right: parent.right anchors.right: parent.right
height: toolBar.height height: toolBar.height
onClicked: { onClicked: {
mainWindow.hideLeftMenu() if (!__animateShowDialog.running)
mainWindow.hideLeftMenu()
} }
} }
...@@ -311,8 +313,10 @@ Item { ...@@ -311,8 +313,10 @@ Item {
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
onClicked: { onClicked: {
__rightPanel.source = "" if (!__animateShowDialog.running) {
mainWindow.hideLeftMenu() __rightPanel.source = ""
mainWindow.hideLeftMenu()
}
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment