From 2a8f7c98601f455da951c6a1af1a2c6b4d32594d Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Wed, 11 Feb 2026 21:23:26 +0100 Subject: [PATCH] Comments --- internal_filesystem/lib/mpos/ui/setting_activity.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal_filesystem/lib/mpos/ui/setting_activity.py b/internal_filesystem/lib/mpos/ui/setting_activity.py index a85b319c..0bac18c6 100644 --- a/internal_filesystem/lib/mpos/ui/setting_activity.py +++ b/internal_filesystem/lib/mpos/ui/setting_activity.py @@ -157,6 +157,8 @@ class SettingActivity(Activity): self.active_radio_index = current_checkbox_index def create_radio_button(self, parent, text, index): + # A fix for the "checkbox unchecks when arrow up is pressed" + # can be implemented like in the wifi.py app: manually adding a clickable label cb = lv.checkbox(parent) cb.set_text(text) cb.add_flag(lv.obj.FLAG.EVENT_BUBBLE)