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

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 {
MouseArea {
anchors.fill: parent
onClicked: {
mainWindow.hideLeftMenu()
if (!__animateShowDialog.running)
mainWindow.hideLeftMenu()
}
}
}
......@@ -264,7 +265,8 @@ Item {
anchors.right: parent.right
height: toolBar.height
onClicked: {
mainWindow.hideLeftMenu()
if (!__animateShowDialog.running)
mainWindow.hideLeftMenu()
}
}
......@@ -311,8 +313,10 @@ Item {
MouseArea {
anchors.fill: parent
onClicked: {
__rightPanel.source = ""
mainWindow.hideLeftMenu()
if (!__animateShowDialog.running) {
__rightPanel.source = ""
mainWindow.hideLeftMenu()
}
}
}
......
Supports Markdown
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