From c5a581d496346b608b05e7f125cae18a8952fbcf Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Wed, 11 Feb 2026 20:14:04 +0100 Subject: [PATCH] Wifi app: similar border style --- .../builtin/apps/com.micropythonos.wifi/assets/wifi.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal_filesystem/builtin/apps/com.micropythonos.wifi/assets/wifi.py b/internal_filesystem/builtin/apps/com.micropythonos.wifi/assets/wifi.py index ed4e9d3c..8f28a7bb 100644 --- a/internal_filesystem/builtin/apps/com.micropythonos.wifi/assets/wifi.py +++ b/internal_filesystem/builtin/apps/com.micropythonos.wifi/assets/wifi.py @@ -334,7 +334,10 @@ class EditNetwork(Activity): def focus_app_cont(self, app_cont): app_cont.set_style_border_color(lv.theme_get_color_primary(None), lv.PART.MAIN) app_cont.set_style_border_width(2, lv.PART.MAIN) + app_cont.set_style_border_opa(lv.OPA._50, lv.PART.MAIN) + app_cont.set_style_radius(5, lv.PART.MAIN) app_cont.scroll_to_view(True) + app_cont.set_style_pad_all(2, lv.PART.MAIN) def defocus_app_cont(self, app_cont): app_cont.set_style_border_width(0, lv.PART.MAIN)