From 2fbbea959d6f5bc6522144f9af83f6c223aa104e Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Tue, 24 Mar 2026 14:03:28 +0100 Subject: [PATCH] Settings: improve UI --- .../assets/hotspot_settings.py | 2 +- .../assets/webserver_settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal_filesystem/builtin/apps/com.micropythonos.settings.hotspot/assets/hotspot_settings.py b/internal_filesystem/builtin/apps/com.micropythonos.settings.hotspot/assets/hotspot_settings.py index ec0ce526..2f31ec07 100644 --- a/internal_filesystem/builtin/apps/com.micropythonos.settings.hotspot/assets/hotspot_settings.py +++ b/internal_filesystem/builtin/apps/com.micropythonos.settings.hotspot/assets/hotspot_settings.py @@ -44,7 +44,7 @@ class HotspotSettings(Activity): button_row.set_width(lv.pct(100)) button_row.set_height(lv.SIZE_CONTENT) button_row.set_style_border_width(0, lv.PART.MAIN) - button_row.set_style_pad_all(0, lv.PART.MAIN) + button_row.set_style_pad_all(10, lv.PART.MAIN) button_row.set_flex_flow(lv.FLEX_FLOW.ROW) button_row.set_style_flex_main_place(lv.FLEX_ALIGN.SPACE_BETWEEN, lv.PART.MAIN) diff --git a/internal_filesystem/builtin/apps/com.micropythonos.settings.webserver/assets/webserver_settings.py b/internal_filesystem/builtin/apps/com.micropythonos.settings.webserver/assets/webserver_settings.py index 07a35da8..86d6d721 100644 --- a/internal_filesystem/builtin/apps/com.micropythonos.settings.webserver/assets/webserver_settings.py +++ b/internal_filesystem/builtin/apps/com.micropythonos.settings.webserver/assets/webserver_settings.py @@ -35,7 +35,7 @@ class WebServerSettings(Activity): button_row.set_width(lv.pct(100)) button_row.set_height(lv.SIZE_CONTENT) button_row.set_style_border_width(0, lv.PART.MAIN) - button_row.set_style_pad_all(0, lv.PART.MAIN) + button_row.set_style_pad_all(10, lv.PART.MAIN) button_row.set_flex_flow(lv.FLEX_FLOW.ROW) button_row.set_style_flex_main_place(lv.FLEX_ALIGN.SPACE_BETWEEN, lv.PART.MAIN)