btsubtab: better look

This commit is contained in:
Lemmy
2026-02-13 23:52:52 -05:00
parent 6b72fd2a5e
commit fb15e46ea3
2 changed files with 14 additions and 9 deletions
+9
View File
@@ -386,6 +386,15 @@
"subTab": 1,
"subTabLabel": "common.bluetooth"
},
{
"labelKey": "bluetooth.panel.available-devices",
"descriptionKey": null,
"widget": "NLabel",
"tab": 15,
"tabLabel": "panels.connections.title",
"subTab": 1,
"subTabLabel": "common.bluetooth"
},
{
"labelKey": "panels.connections.hide-unnamed-devices-label",
"descriptionKey": "panels.connections.hide-unnamed-devices-description",
@@ -210,8 +210,7 @@ Item {
NText {
text: I18n.tr("bluetooth.panel.connected-devices")
pointSize: Style.fontSizeS
color: Color.mSecondary
pointSize: Style.fontSizeL
font.weight: Style.fontWeightBold
Layout.fillWidth: true
Layout.leftMargin: Style.marginS
@@ -243,8 +242,7 @@ Item {
NText {
text: I18n.tr("bluetooth.panel.paired-devices")
pointSize: Style.fontSizeS
color: Color.mSecondary
pointSize: Style.fontSizeL
font.weight: Style.fontWeightBold
Layout.fillWidth: true
Layout.leftMargin: Style.marginS
@@ -279,11 +277,9 @@ Item {
Layout.leftMargin: Style.marginS
spacing: Style.marginS
NText {
text: I18n.tr("bluetooth.panel.available-devices") + (BluetoothService.scanningActive ? " (" + I18n.tr("bluetooth.panel.scanning") + ")" : "")
pointSize: Style.fontSizeS
color: Color.mSecondary
font.weight: Style.fontWeightBold
NLabel {
label: I18n.tr("bluetooth.panel.available-devices")
description: BluetoothService.scanningActive ? I18n.tr("bluetooth.panel.scanning") : ""
Layout.fillWidth: true
}
}