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

Merge 6ed420e04319b9111fbc4d38a2a8713a3a18b822 into dev

This commit is contained in:
github-actions[bot] 2021-01-04 14:28:13 +00:00 committed by GitHub
commit ac910f278a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

View File

@ -15,9 +15,11 @@
- fix(textarea) buffer overflow in password mode with UTF-8 characters
- fix(textarea) cursor position after hiding character in password mode
- fix(linemeter) draw critical lines with correct color
- fix(kconfig) handle disable sprintf float correctly.
- fix(layout) stop layout after recursion threshold is reached
- fix(gauge) fix redraw with image needle
## v7.8.1
### Bugfixes

View File

@ -400,6 +400,18 @@ extern "C" {
#endif
#endif
/*------------------
* SPRINTF DISABLE FLOAT
*-----------------*/
#ifndef LV_SPRINTF_DISABLE_FLOAT
#ifndef CONFIG_LV_SPRINTF_DISABLE_FLOAT
#define LV_SPRINTF_DISABLE_FLOAT 0
#else
#define LV_SPRINTF_DISABLE_FLOAT 1
#endif
#endif
#ifdef __cplusplus
} /* extern "C" */
#endif