diff options
Diffstat (limited to 'modules/bar')
| -rw-r--r-- | modules/bar/components/StatusIcons.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/bar/components/StatusIcons.qml b/modules/bar/components/StatusIcons.qml index f4dd153..abab10c 100644 --- a/modules/bar/components/StatusIcons.qml +++ b/modules/bar/components/StatusIcons.qml @@ -19,7 +19,7 @@ Item { id: network animate: true - text: Icons.getNetworkIcon(Network.active?.strength ?? 0) + text: Network.active ? Icons.getNetworkIcon(Network.active.strength ?? 0) : "wifi_off" color: root.colour anchors.horizontalCenter: parent.horizontalCenter |