Fix text centering

Sort applauncher entries alphabetical
Use global fontFamily and font size (Theme.qml)
Tons of other small fixes
This commit is contained in:
ly-sec 2025-07-12 13:58:18 +02:00
parent ac456fa9a3
commit a1a9060111
27 changed files with 535 additions and 1060 deletions

View file

@ -111,6 +111,7 @@ Item {
}
Text {
text: "Bluetooth"
font.family: Theme.fontFamily
font.pixelSize: 26
font.bold: true
color: Theme.textPrimary
@ -225,6 +226,7 @@ Item {
Text {
Layout.fillWidth: true
text: modelData.name || "Unknown Device"
font.family: Theme.fontFamily
color: modelData.connected ? Theme.accentPrimary : Theme.textPrimary
font.pixelSize: 14
elide: Text.ElideRight
@ -232,12 +234,14 @@ Item {
Text {
Layout.fillWidth: true
text: modelData.address
font.family: Theme.fontFamily
color: modelData.connected ? Theme.accentPrimary : Theme.textSecondary
font.pixelSize: 11
elide: Text.ElideRight
}
Text {
text: "Paired: " + modelData.paired + " | Trusted: " + modelData.trusted
font.family: Theme.fontFamily
font.pixelSize: 10
color: Theme.textSecondary
visible: true