Settings app: tweak font size

This commit is contained in:
Thomas Farstrike
2025-11-21 18:46:50 +01:00
parent 60e896aa9e
commit 16cbe8a260
2 changed files with 4 additions and 4 deletions
@@ -3,10 +3,10 @@
"publisher": "MicroPythonOS",
"short_description": "View and change MicroPythonOS settings.",
"long_description": "This is the official settings app for MicroPythonOS. It allows you to configure all aspects of MicroPythonOS.",
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.settings/icons/com.micropythonos.settings_0.0.7_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.settings/mpks/com.micropythonos.settings_0.0.7.mpk",
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.settings/icons/com.micropythonos.settings_0.0.8_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.settings/mpks/com.micropythonos.settings_0.0.8.mpk",
"fullname": "com.micropythonos.settings",
"version": "0.0.7",
"version": "0.0.8",
"category": "development",
"activities": [
{
@@ -155,7 +155,7 @@ class SettingActivity(Activity):
setting_label = lv.label(top_cont)
setting_label.set_text(setting["title"])
setting_label.align(lv.ALIGN.TOP_LEFT,0,0)
setting_label.set_style_text_font(lv.font_montserrat_26, 0)
setting_label.set_style_text_font(lv.font_montserrat_24, 0)
ui = setting.get("ui")
ui_options = setting.get("ui_options")