1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-08 14:52:08 -04:00

dock: fix auto-hide hit area

media osd: fix showing without album art
This commit is contained in:
bbedward
2026-02-11 17:50:57 -05:00
parent 46bb3b613b
commit 0133c19276
4 changed files with 35 additions and 18 deletions

View File

@@ -105,7 +105,7 @@ PanelWindow {
}
readonly property real dockOffset: {
if (!SettingsData.showDock || SettingsData.dockAutoHide)
if (!SettingsData.showDock || SettingsData.dockAutoHide || SettingsData.dockSmartAutoHide)
return 0;
return dockThickness + SettingsData.dockSpacing + SettingsData.dockBottomGap + SettingsData.dockMargin;
}