Launcher: reduce horizontal spacing

To fit at least 3 icons on a 240px wide display.
This commit is contained in:
Thomas Farstrike
2026-02-09 20:41:27 +01:00
parent 23e94145c9
commit b9590d681d
@@ -87,7 +87,7 @@ class Launcher(Activity):
# Grid parameters
icon_size = 64
label_height = 24
iconcont_width = icon_size + label_height
iconcont_width = int(icon_size * 1.1)
iconcont_height = icon_size + label_height
for app in AppManager.get_app_list():