Browse Source

Fix opening QML based settings is twitchy and unreliable on Windows touch (Surface Pro-like) devices

QGC4.4
Nate Weibley 9 years ago
parent
commit
495dbb6c37
  1. 4
      src/ui/MainWindowLeftPanel.qml

4
src/ui/MainWindowLeftPanel.qml

@ -114,6 +114,7 @@ Item { @@ -114,6 +114,7 @@ Item {
MouseArea {
anchors.fill: parent
onClicked: {
if (!__animateShowDialog.running)
mainWindow.hideLeftMenu()
}
}
@ -264,6 +265,7 @@ Item { @@ -264,6 +265,7 @@ Item {
anchors.right: parent.right
height: toolBar.height
onClicked: {
if (!__animateShowDialog.running)
mainWindow.hideLeftMenu()
}
}
@ -311,10 +313,12 @@ Item { @@ -311,10 +313,12 @@ Item {
MouseArea {
anchors.fill: parent
onClicked: {
if (!__animateShowDialog.running) {
__rightPanel.source = ""
mainWindow.hideLeftMenu()
}
}
}
}
}

Loading…
Cancel
Save