diff --git a/CHANGELOG.md b/CHANGELOG.md index 57700ab0..725e6424 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ===== - Fix KeyPad focus handling for devices without touch screen like the Fri3d Camp 2024 Badge - AppStore app: don't update UI after the user has closed the app +- Wifi app: cleanup and improve keyboard and focus handling 0.1.1 ===== diff --git a/internal_filesystem/lib/mpos/ui/__init__.py b/internal_filesystem/lib/mpos/ui/__init__.py index 98d3850c..31787f02 100644 --- a/internal_filesystem/lib/mpos/ui/__init__.py +++ b/internal_filesystem/lib/mpos/ui/__init__.py @@ -275,7 +275,7 @@ def back_screen(): emulate_focus_obj(default_focusgroup, prev_focused_object) # LVGL 9.3 should have: default_focusgroup.focus_obj(prev_focused_object) if prev_activity: prev_activity.onResume(prev_screen) - print(f"5 default focus group has {lv.group_get_default().get_obj_count()} items") + print(f"after onResume, default focus group has {lv.group_get_default().get_obj_count()} items") if len(screen_stack) == 1: mpos.ui.topmenu.open_bar()