diff options
| author | Riku Isokoski <riksu9000@gmail.com> | 2022-08-11 11:16:57 +0300 |
|---|---|---|
| committer | JF <JF002@users.noreply.github.com> | 2022-09-17 21:27:32 +0200 |
| commit | b9224c1acedf911353156cf926848b90d8f165ae (patch) | |
| tree | 31d6a9861d311f668a42f0c658fe33da2e0d23c7 /src/libs | |
| parent | bf90e07a28ed0cd5816d9090a172c60af6170625 (diff) | |
Disable value_str
value_str is a way to add text on a button without a separate label.
This saves having an extra label object, but uses more memory and is
removed in LVGL8
Diffstat (limited to 'src/libs')
| -rw-r--r-- | src/libs/lv_conf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/lv_conf.h b/src/libs/lv_conf.h index 00f6a1df..063f1d34 100644 --- a/src/libs/lv_conf.h +++ b/src/libs/lv_conf.h @@ -164,7 +164,7 @@ typedef void* lv_anim_user_data_t; #define LV_USE_PATTERN 1 /*1: enable value string drawing on rectangles*/ -#define LV_USE_VALUE_STR 1 +#define LV_USE_VALUE_STR 0 /* 1: Use other blend modes than normal (`LV_BLEND_MODE_...`)*/ #define LV_USE_BLEND_MODES 0 |
