From 0dd59d04047b8bf52b9e07e25b93bedcee6b42e9 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Sat, 13 Dec 2025 01:32:06 -0800 Subject: [PATCH] comma four: fix missing WiFi show_event (#36858) * can't do this * can do this --- selfdrive/ui/mici/layouts/settings/network/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/selfdrive/ui/mici/layouts/settings/network/__init__.py b/selfdrive/ui/mici/layouts/settings/network/__init__.py index d085fdf55f..1faf49311a 100644 --- a/selfdrive/ui/mici/layouts/settings/network/__init__.py +++ b/selfdrive/ui/mici/layouts/settings/network/__init__.py @@ -171,6 +171,8 @@ class NetworkLayoutMici(NavWidget): }.get(self._wifi_manager.current_network_metered, 'default')) def _switch_to_panel(self, panel_type: NetworkPanelType): + if panel_type == NetworkPanelType.WIFI: + self._wifi_ui.show_event() self._current_panel = panel_type def _render(self, rect: rl.Rectangle):