1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

fix confilcts

This commit is contained in:
Gabor Kiss-Vamosi 2020-11-17 11:15:14 +01:00
commit 94a25b86a8
2 changed files with 6 additions and 2 deletions

View File

@ -5,8 +5,9 @@
### New features
- make DMA2D non blocking
- add unscii-16 built-in font
- add KConfig
## v7.7.2 (Planned to 28.11.2020)
## v7.7.2 (Planned to 17.11.2020)
### Bugfixes
- fix(draw_triangle): fix polygon/triangle drawing when the order of points is counter-clockwise
- fix(btnmatrix): fix setting the same map with modified pointers
@ -14,8 +15,9 @@
- label: Repair calculate back `dot` character logical error which cause infinite loop.
- fix(theme_material): remove the bottom border from tabview header
- fix(imgbtn) guess a the closest availabe state with valid src
- fix(spinbox) update cursor position in lv_spinbox_set_step
## v7.7.1 (04.11.2020)
## v7.7.1 (03.11.2020)
### Bugfixes
- Respect btnmatrix's `one_check` in `lv_btnmatrix_set_btn_ctrl`
- Gauge: make the needle images to use the styles from `LV_GAUGE_PART_PART`

View File

@ -198,6 +198,8 @@ void lv_spinbox_set_step(lv_obj_t * spinbox, uint32_t step)
if(ext == NULL) return;
ext->step = step;
lv_spinbox_updatevalue(spinbox);
}
/**