bar: support for colored capsules

This commit is contained in:
Lemmy
2026-02-06 09:42:22 -05:00
parent 27b89b37fa
commit cbea842ff4
22 changed files with 59 additions and 2 deletions
@@ -156,6 +156,17 @@ ColumnLayout {
onToggled: checked => Settings.data.bar.showCapsule = checked
}
NComboBox {
Layout.fillWidth: true
visible: Settings.data.bar.showCapsule
label: I18n.tr("panels.bar.appearance-capsule-color-label")
description: I18n.tr("panels.bar.appearance-capsule-color-description")
model: Color.colorKeyModel
currentKey: Settings.data.bar.capsuleColorKey
onSelected: key => Settings.data.bar.capsuleColorKey = key
minimumWidth: 200
}
NValueSlider {
Layout.fillWidth: true
visible: Settings.data.bar.showCapsule