From 29f2389cce373ccbf27526183aa34cfe5612c52d Mon Sep 17 00:00:00 2001 From: Dean Lee Date: Mon, 14 Aug 2023 22:18:41 +0800 Subject: [PATCH] ui/networking: bolding the connected network (#29385) --- selfdrive/ui/qt/offroad/networking.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/ui/qt/offroad/networking.cc b/selfdrive/ui/qt/offroad/networking.cc index c43df1cdc6..b147671b42 100644 --- a/selfdrive/ui/qt/offroad/networking.cc +++ b/selfdrive/ui/qt/offroad/networking.cc @@ -347,7 +347,7 @@ void WifiItem::setItem(const Network &n, const QPixmap &status_icon, bool show_f ssidLabel->setText(n.ssid); ssidLabel->setEnabled(n.security_type != SecurityType::UNSUPPORTED); - ssidLabel->setFont(InterFont(55, network.connected == ConnectedType::DISCONNECTED ? QFont::Normal : QFont::Medium)); + ssidLabel->setFont(InterFont(55, network.connected == ConnectedType::DISCONNECTED ? QFont::Normal : QFont::Bold)); connecting->setVisible(n.connected == ConnectedType::CONNECTING); forgetBtn->setVisible(show_forget_btn);