fix more null warnings

This commit is contained in:
end-4
2025-11-07 21:11:11 +01:00
parent 1cc04e118f
commit 26f2a9f3fd
@@ -43,8 +43,8 @@ AbstractOverlayWidget {
drag {
minimumX: 0
minimumY: 0
maximumX: root.parent.width - root.width
maximumY: root.parent.height - root.height
maximumX: root.parent?.width - root.width
maximumY: root.parent?.height - root.height
}
opacity: (GlobalStates.overlayOpen || !clickthrough) ? 1.0 : Config.options.overlay.clickthroughOpacity