From d87ccd86300fa3750322f9644d46f8cd7af1f755 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Sun, 25 May 2025 11:32:19 +0200 Subject: [PATCH] No rounded corners and borders in launcher --- .../builtin/apps/com.example.launcher/assets/launcher.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal_filesystem/builtin/apps/com.example.launcher/assets/launcher.py b/internal_filesystem/builtin/apps/com.example.launcher/assets/launcher.py index f215b96f..f8125261 100644 --- a/internal_filesystem/builtin/apps/com.example.launcher/assets/launcher.py +++ b/internal_filesystem/builtin/apps/com.example.launcher/assets/launcher.py @@ -17,6 +17,8 @@ import mpos.ui # Create a container for the grid main_screen = lv.obj() cont = lv.obj(main_screen) +cont.set_style_border_width(0, 0) +cont.set_style_radius(0, 0) cont.set_pos(0, mpos.ui.NOTIFICATION_BAR_HEIGHT) # leave some margin for the notification bar cont.set_size(lv.pct(100), lv.pct(100)) cont.set_style_pad_all(10, 0)