1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-06 21:45:38 -05:00

account for topbar spacing on all popouts

This commit is contained in:
bbedward
2025-08-17 14:43:12 -04:00
parent fc15397a1e
commit 49c642a7fc
8 changed files with 10 additions and 10 deletions

View File

@@ -73,7 +73,7 @@ PanelWindow {
color: "transparent"
implicitWidth: 400
implicitHeight: 122
onScreenYChanged: margins.top = Theme.barHeight + 4 + screenY
onScreenYChanged: margins.top = Theme.barHeight - 4 + SettingsData.topBarSpacing + 4 + screenY
onHasValidDataChanged: {
if (!hasValidData && !exiting && !_isDestroying) {
@@ -116,7 +116,7 @@ PanelWindow {
}
margins {
top: Theme.barHeight + 4
top: Theme.barHeight - 4 + SettingsData.topBarSpacing + 4
right: 12
}