From 6f6e7bd6b67e22ea234e0328749d9366419e9371 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Sat, 23 Aug 2025 01:59:24 -0700 Subject: [PATCH] this feels good --- system/ui/lib/wifi_manager.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/ui/lib/wifi_manager.py b/system/ui/lib/wifi_manager.py index 17e0a042b3..a9d88bb771 100644 --- a/system/ui/lib/wifi_manager.py +++ b/system/ui/lib/wifi_manager.py @@ -161,6 +161,9 @@ class WifiManager: def set_active(self, active: bool): print('SETTING ACTIVE', active) self._active = active + # fast refresh when going active + if active: + self._update_networks() def _monitor_state(self): device_path: dbus.ObjectPath = self._wait_for_wifi_device()