fix: nexus nav bluetooth -> connected devices

Also fix icon fill
And language & region icon
This commit is contained in:
2 * r + 2 * t 2026-06-06 23:48:57 +10:00
parent 210130de43
commit 3310cfafa3
2 changed files with 9 additions and 7 deletions

View file

@ -29,10 +29,11 @@ QtObject {
category: "connectivity"
},
{
label: qsTr("Bluetooth"),
icon: "bluetooth",
description: qsTr("Bluetooth pairing"),
category: "connectivity"
label: qsTr("Connected devices"),
icon: "devices_other",
description: qsTr("Bluetooth, pairing"),
category: "connectivity",
noFill: true
},
{
label: qsTr("Audio"),
@ -70,7 +71,7 @@ QtObject {
},
{
label: qsTr("Language & region"),
icon: "build",
icon: "globe",
description: qsTr("UI language, weather location, display units"),
category: "shell"
},

View file

@ -92,8 +92,9 @@ VerticalFadeFlickable {
text: item.modelData.icon
color: item.isCurrentPage ? Colours.palette.m3onPrimary : Colours.palette.m3onSecondaryContainer
fontStyle: Tokens.font.icon.medium
fill: 1
fontStyle: Tokens.font.icon.builders.medium.weight(Font.Medium).build()
grade: 25
fill: item.modelData.noFill ? 0 : 1
}
}