Browse Source

Merge pull request #8987 from DonLakeFlyer/DrawerClose

Fly: Fix Drawer closePolicy/interactive
QGC4.4
Don Gagne 5 years ago committed by GitHub
parent
commit
26d3836f07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/ui/MainRootWindow.qml

3
src/ui/MainRootWindow.qml

@ -333,7 +333,6 @@ ApplicationWindow {
edge: Qt.LeftEdge edge: Qt.LeftEdge
interactive: true interactive: true
dragMargin: 0 dragMargin: 0
closePolicy: Drawer.NoAutoClose
visible: false visible: false
property var _mainWindow: mainWindow property var _mainWindow: mainWindow
@ -482,6 +481,8 @@ ApplicationWindow {
height: mainWindow.height height: mainWindow.height
edge: Qt.LeftEdge edge: Qt.LeftEdge
dragMargin: 0 dragMargin: 0
closePolicy: Drawer.NoAutoClose
interactive: false
visible: false visible: false
property alias title: toolbarDrawerText.text property alias title: toolbarDrawerText.text

Loading…
Cancel
Save