From 9a6c98c1346c262b6c3648a401591222adbdf9d1 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Fri, 5 Sep 2025 23:18:23 -0400 Subject: [PATCH] WiFi: removed status indicator --- Modules/WiFiPanel/WiFiPanel.qml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/Modules/WiFiPanel/WiFiPanel.qml b/Modules/WiFiPanel/WiFiPanel.qml index 1a77e69..484f9ee 100644 --- a/Modules/WiFiPanel/WiFiPanel.qml +++ b/Modules/WiFiPanel/WiFiPanel.qml @@ -45,7 +45,7 @@ NPanel { } NText { - text: "WiFi" + text: "Wi-Fi" font.pointSize: Style.fontSizeL * scaling font.weight: Style.fontWeightBold color: Color.mOnSurface @@ -53,20 +53,11 @@ NPanel { Layout.leftMargin: Style.marginS * scaling } - // Connection status indicator - Rectangle { - visible: NetworkService.hasActiveConnection - width: 8 * scaling - height: 8 * scaling - radius: 4 * scaling - color: Color.mPrimary - } - NIconButton { icon: "refresh" tooltipText: "Refresh networks" sizeRatio: 0.8 - enabled: Settings.data.network.wifiEnabled && !NetworkService.isLoading + enabled: Settings.data.network.wifiEnabled onClicked: NetworkService.refreshNetworks() }