mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-28 07:03:00 +08:00
Merge b6db434c21c22ffa53eaf9e1a8a743710a5a0a3a into dev
This commit is contained in:
commit
413b9003b9
@ -3,9 +3,11 @@
|
||||
## v7.9.2 (Planned for 02.02.2021)
|
||||
|
||||
### New features
|
||||
|
||||
- feat(indev) allow input events to be passed to disabled objects
|
||||
|
||||
### Bugfixes
|
||||
- fix(btnmatrix) fix lv_btnmatrix_get_active_btn_text() when used in a group
|
||||
|
||||
## v7.9.1
|
||||
|
||||
### Bugfixes
|
||||
|
@ -293,9 +293,11 @@ void lv_btnmatrix_set_focused_btn(lv_obj_t * btnm, uint16_t id)
|
||||
|
||||
if(id >= ext->btn_cnt && id != LV_BTNMATRIX_BTN_NONE) return;
|
||||
|
||||
if(id == ext->btn_id_focused) return;
|
||||
if(ext->btn_id_act == LV_BTNMATRIX_BTN_NONE) ext->btn_id_act = id;
|
||||
|
||||
if(id == ext->btn_id_focused) return;
|
||||
ext->btn_id_focused = id;
|
||||
|
||||
lv_obj_invalidate(btnm);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user