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

Merge b4955f0b6ead8c8a2b78ddb8c7773efed884d1d0 into dev

This commit is contained in:
github-actions[bot] 2020-08-04 16:44:11 +00:00 committed by GitHub
commit 5c3640868c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -4,7 +4,9 @@
*Available in the `dev` branch*
## v7.3.1 (planned on 18.08.2020)
*Available in the `master` branch*
### Bugfix
- Fix drawing value string twice
## v7.3.0 (04.08.2020)

View File

@ -3676,6 +3676,7 @@ static lv_design_res_t lv_obj_design(lv_obj_t * obj, const lv_area_t * clip_area
draw_dsc.bg_opa = LV_OPA_TRANSP;
draw_dsc.pattern_opa = LV_OPA_TRANSP;
draw_dsc.shadow_opa = LV_OPA_TRANSP;
draw_dsc.value_opa = LV_OPA_TRANSP;
lv_obj_init_draw_rect_dsc(obj, LV_OBJ_PART_MAIN, &draw_dsc);
lv_coord_t w = lv_obj_get_style_transform_width(obj, LV_OBJ_PART_MAIN);