1
0
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:
github-actions[bot] 2021-01-27 09:00:46 +00:00 committed by GitHub
commit 413b9003b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -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);
}