Fix ignored clicks on titlebar on Linux & Windows

This commit is contained in:
Alex Spataru 2021-11-09 17:18:32 -08:00
parent 53b7b961e9
commit 8e5d45f39f

View File

@ -123,6 +123,15 @@ Window {
border.width: root.borderWidth
anchors.margins: root.shadowMargin
}
//
// Resize handler
//
ResizeHandles {
window: root
anchors.fill: parent
handleSize: root.handleSize
}
//
// Titlebar control
@ -185,13 +194,4 @@ Window {
root.flags = root.customFlags
}
}
//
// Resize handler
//
ResizeHandles {
window: root
anchors.fill: parent
handleSize: root.handleSize
}
}