feat(settings): add dock launcher icon toggle option

This commit is contained in:
tibssy
2026-02-19 02:43:34 +00:00
parent cb77a08243
commit ceda3dfd43
4 changed files with 13 additions and 0 deletions
@@ -218,5 +218,14 @@ ColumnLayout {
defaultValue: Settings.getDefaultValue("dock.colorizeIcons")
onToggled: checked => Settings.data.dock.colorizeIcons = checked
}
NToggle {
Layout.fillWidth: true
label: I18n.tr("panels.dock.appearance-show-launcher-icon-label")
description: I18n.tr("panels.dock.appearance-show-launcher-icon-description")
checked: Settings.data.dock.showLauncherIcon
defaultValue: Settings.getDefaultValue("dock.showLauncherIcon")
onToggled: checked => Settings.data.dock.showLauncherIcon = checked
}
}
}