TaskbarSettings: fix

This commit is contained in:
ItsLemmy
2025-12-07 17:48:57 -05:00
parent c15cdef956
commit f3b6c1d60b
@@ -89,6 +89,14 @@ ColumnLayout {
onToggled: checked => root.valueColorizeIcons = checked
}
NToggle {
Layout.fillWidth: true
label: I18n.tr("bar.widget-settings.taskbar.show-pinned-apps.label")
description: I18n.tr("bar.widget-settings.taskbar.show-pinned-apps.description")
checked: root.valueShowPinnedApps
onToggled: checked => root.valueShowPinnedApps = checked
}
NToggle {
Layout.fillWidth: true
label: I18n.tr("bar.widget-settings.taskbar.show-title.label")
@@ -106,9 +114,5 @@ ColumnLayout {
description: I18n.tr("bar.widget-settings.taskbar.title-width.description")
text: widgetData.titleWidth || widgetMetadata.titleWidth
placeholderText: I18n.tr("placeholders.enter-width-pixels")
label: I18n.tr("bar.widget-settings.taskbar.show-pinned-apps.label")
description: I18n.tr("bar.widget-settings.taskbar.show-pinned-apps.description")
checked: root.valueShowPinnedApps
onToggled: checked => root.valueShowPinnedApps = checked
}
}