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

View file

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