1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-29 16:02:51 -05:00

Topbar: fix top bar input mask when hidden

This commit is contained in:
bbedward
2025-09-22 10:18:43 -04:00
parent 3862f0ced5
commit bd5064e567

View File

@@ -145,7 +145,7 @@ PanelWindow {
left: parent.left left: parent.left
right: parent.right right: parent.right
} }
height: (topBarCore.autoHide && !topBarCore.reveal) ? 8 : (root.effectiveBarHeight + SettingsData.topBarSpacing) height: (topBarCore.autoHide && !topBarCore.reveal) ? 8 : (SettingsData.topBarVisible ? (root.effectiveBarHeight + SettingsData.topBarSpacing) : 0)
} }
mask: Region { mask: Region {