diff --git a/docs/ROADMAP.md b/docs/ROADMAP.md index 4894a7f71..1c4cdac93 100644 --- a/docs/ROADMAP.md +++ b/docs/ROADMAP.md @@ -21,8 +21,11 @@ Planned to September/October 2020 - Work in progress - Simplified File system interface ([feat/new_fs_api](https://github.com/lvgl/lvgl/tree/feat/new-fs-api) branch) to make porting easier - Work in progress -- RGB888 support [#1722](https://github.com/lvgl/lvgl/issues/1722) - Remove the align parameter from `lv_canvas_draw_text` +- RGB888 support [#1722](https://github.com/lvgl/lvgl/issues/1722) + +## v8.1 +- Add radio button widget ## v9 - Simplify `group`s. Discussion is [here](https://forum.lvgl.io/t/lv-group-tabindex/2927/3).7 diff --git a/src/lv_core/lv_group.c b/src/lv_core/lv_group.c index a926a5a0c..bb511bc41 100644 --- a/src/lv_core/lv_group.c +++ b/src/lv_core/lv_group.c @@ -332,9 +332,9 @@ void lv_group_set_editing(lv_group_t * group, bool edit) focused->signal_cb(focused, LV_SIGNAL_FOCUS, NULL); /*Focus again to properly leave/open edit/navigate mode*/ lv_res_t res = lv_event_send(*group->obj_focus, LV_EVENT_FOCUSED, NULL); if(res != LV_RES_OK) return; - } - lv_obj_invalidate(focused); + lv_obj_invalidate(focused); + } } /**