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:
commit
ac910f278a
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user