Dock: Settings

- Removed master toggle again, as we have it per display
- moved autoHide setting into the dock section
- conditional dock per display working
This commit is contained in:
quadbyte 2025-08-15 10:23:16 -04:00
parent 82e42ad5c2
commit af20c7b9eb
4 changed files with 11 additions and 17 deletions

View file

@ -109,21 +109,12 @@ ColumnLayout {
}
}
NToggle {
label: "Show Dock"
description: "Enable the dock at the bottom of the screen"
value: Settings.data.general.showDock
onToggled: function (v) {
Settings.data.general.showDock = v
}
}
NToggle {
label: "Auto-hide Dock"
description: "Automatically hide the dock when not in use"
value: Settings.data.general.dockAutoHide
value: Settings.data.dock.autoHide
onToggled: function (v) {
Settings.data.general.dockAutoHide = v
Settings.data.dock.autoHide = v
}
}
}