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)