Commit b612e4cd authored by Don Gagne's avatar Don Gagne

Merge pull request #3216 from NaterGator/touchsettingsfix

Fix opening QML based settings is twitchy and unreliable 
parents 3592063d 495dbb6c
......@@ -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()
}
}
}
......
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