Prevent HDrawer from being in front of an HPopup

This commit is contained in:
miruka 2019-12-11 07:53:27 -04:00
parent d56b590edc
commit 1c7015bbd2

View File

@ -7,6 +7,10 @@ Drawer {
implicitWidth: horizontal ? calculatedSize : parent.width
implicitHeight: vertical ? calculatedSize : parent.height
// Prevents this: open a popup, make the window small enough for the
// drawer to collapse, then make it big again popup is now behind drawer
z: -1
topPadding: 0
bottomPadding: 0
leftPadding: 0