Merge branch 'master' of https://github.com/littlevgl/lvgl
This commit is contained in:
@@ -21,8 +21,11 @@ Planned to September/October 2020
|
|||||||
- Work in progress
|
- 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
|
- 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
|
- Work in progress
|
||||||
- RGB888 support [#1722](https://github.com/lvgl/lvgl/issues/1722)
|
|
||||||
- Remove the align parameter from `lv_canvas_draw_text`
|
- 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
|
## v9
|
||||||
- Simplify `group`s. Discussion is [here](https://forum.lvgl.io/t/lv-group-tabindex/2927/3).7
|
- Simplify `group`s. Discussion is [here](https://forum.lvgl.io/t/lv-group-tabindex/2927/3).7
|
||||||
|
|||||||
@@ -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*/
|
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);
|
lv_res_t res = lv_event_send(*group->obj_focus, LV_EVENT_FOCUSED, NULL);
|
||||||
if(res != LV_RES_OK) return;
|
if(res != LV_RES_OK) return;
|
||||||
}
|
|
||||||
|
|
||||||
lv_obj_invalidate(focused);
|
lv_obj_invalidate(focused);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user