forked from Shinonome/dots-hyprland
fix more null warnings
This commit is contained in:
@@ -43,8 +43,8 @@ AbstractOverlayWidget {
|
|||||||
drag {
|
drag {
|
||||||
minimumX: 0
|
minimumX: 0
|
||||||
minimumY: 0
|
minimumY: 0
|
||||||
maximumX: root.parent.width - root.width
|
maximumX: root.parent?.width - root.width
|
||||||
maximumY: root.parent.height - root.height
|
maximumY: root.parent?.height - root.height
|
||||||
}
|
}
|
||||||
opacity: (GlobalStates.overlayOpen || !clickthrough) ? 1.0 : Config.options.overlay.clickthroughOpacity
|
opacity: (GlobalStates.overlayOpen || !clickthrough) ? 1.0 : Config.options.overlay.clickthroughOpacity
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user