diff options
Diffstat (limited to 'desktop-widgets/btdeviceselectiondialog.cpp')
-rw-r--r-- | desktop-widgets/btdeviceselectiondialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop-widgets/btdeviceselectiondialog.cpp b/desktop-widgets/btdeviceselectiondialog.cpp index 94e07c969..6502978c4 100644 --- a/desktop-widgets/btdeviceselectiondialog.cpp +++ b/desktop-widgets/btdeviceselectiondialog.cpp @@ -222,7 +222,7 @@ void BtDeviceSelectionDialog::addRemoteDevice(const QBluetoothDeviceInfo &remote QColor pairingColor = QColor(Qt::white); #else // By default we use the status label and the color for the UNPAIRED state - QColor pairingColor = QColor(Qt::red); + QColor pairingColor = QColor("#F1A9A0"); QString pairingStatusLabel = tr("UNPAIRED"); QBluetoothLocalDevice::Pairing pairingStatus = localDevice->pairingStatus(remoteDeviceInfo.address()); @@ -231,7 +231,7 @@ void BtDeviceSelectionDialog::addRemoteDevice(const QBluetoothDeviceInfo &remote pairingColor = QColor(Qt::gray); } else if (pairingStatus == QBluetoothLocalDevice::AuthorizedPaired) { pairingStatusLabel = tr("AUTHORIZED_PAIRED"); - pairingColor = QColor(Qt::blue); + pairingColor = QColor("#89C4F4"); } if (remoteDeviceInfo.address().isNull()) pairingColor = QColor(Qt::gray); |