Index: sources/gui/qml/pages/SettingsBluetooth.qml =================================================================== diff -u -r7249125bb71e6fab4139590ee777c64ece9cf3be -r5696b8db4628ee3143d93952c5dbdf511fa985b1 --- sources/gui/qml/pages/SettingsBluetooth.qml (.../SettingsBluetooth.qml) (revision 7249125bb71e6fab4139590ee777c64ece9cf3be) +++ sources/gui/qml/pages/SettingsBluetooth.qml (.../SettingsBluetooth.qml) (revision 5696b8db4628ee3143d93952c5dbdf511fa985b1) @@ -81,7 +81,7 @@ text: qsTr("My Devices") } - ListView { id: _paired_devices + ListView { id: _pairedDevices model: vBluetooth.pairedDevices anchors.top: _pairedDevicesLabel.bottom anchors.topMargin: Variables.settingsBLEListViewMargin @@ -103,7 +103,7 @@ animated: true Text { - id: _pairedDevice + id: _pairedDeviceName anchors.bottom: parent.verticalCenter anchors.horizontalCenter: parent.horizontalCenter text: modelData.name @@ -118,6 +118,17 @@ color: Colors.textMain } + Text { + id: _isConnected + anchors.bottom: parent.bottom + anchors.left: parent.left + anchors.horizontalCenter: parent.horizontalCenter + anchors.leftMargin: 5 + text: modelData.connected ? "Paired, Connected" : "Paired, Not Connected" + color: Colors.textMain + font.pixelSize: Fonts.bleConnectedFontSize + } + onClicked: { vBluetooth.doSelectDevice(modelData.address) } @@ -132,7 +143,7 @@ font.pixelSize: Fonts.bleTitleFontSize color: Colors.textMain - text: qsTr("Devices") + text: qsTr("Other Devices") } ListView { id: _devices