Dock: If bar is set to bottom position, force dock autohide to avoid conflicts.

This commit is contained in:
LemmyCook 2025-08-21 23:41:39 -04:00
parent d135139100
commit 84f8735008

View file

@ -23,7 +23,7 @@ Loader {
screen: modelData
// Auto-hide properties - make reactive to settings changes
property bool autoHide: Settings.data.dock.autoHide
property bool autoHide: Settings.data.dock.autoHide || (Settings.data.bar.position === "bottom")
property bool hidden: autoHide
property int hideDelay: 500
property int showDelay: 100