define LV_LINEMETER_PRECISE 2

This commit is contained in:
fvanroie 2021-06-11 15:04:19 +02:00
parent b14e581fae
commit 0d1066e97f
2 changed files with 14 additions and 1 deletions

View File

@ -738,6 +738,19 @@ typedef struct {
# define LV_DROPDOWN_DEF_ANIM_TIME 200
#endif
/*Linemeter (dependencies: -*/
#define LV_USE_LINEMETER 1
#if LV_USE_LINEMETER
/* Set how precisely should the lines of the line meter be calculated.
* Higher precision means slower rendering.
* 0: normal
* 1: extra precision in the inner ring
* 2. extra precision on the outer ring too
*/
# define LV_LINEMETER_PRECISE 2
#endif
/*Gauge (dependencies:lv_bar, lv_linemeter)*/
#define LV_USE_GAUGE 1

View File

@ -692,7 +692,7 @@ typedef struct {
* 1: extra precision in the inner ring
* 2. extra precision on the outer ring too
*/
# define LV_LINEMETER_PRECISE 1
# define LV_LINEMETER_PRECISE 2
#endif
/*Mask (dependencies: -)*/
#define LV_USE_OBJMASK 1