diff options
author | Gabor Kiss-Vamosi <kisvegabor@gmail.com> | 2021-11-09 15:34:30 +0100 |
---|---|---|
committer | Gabor Kiss-Vamosi <kisvegabor@gmail.com> | 2021-11-09 15:34:30 +0100 |
commit | cc78ef450649a10f260649dc3ba19ac8a6b88e86 (patch) | |
tree | b746d68f5372ff9992d6b8866c5a97b8607db8bc /scripts/style_api_gen.py | |
parent | 4c034e56e049ad3d9bca5eb4b3e8721e60c11d36 (diff) | |
download | lvgl-cc78ef450649a10f260649dc3ba19ac8a6b88e86.tar.gz lvgl-cc78ef450649a10f260649dc3ba19ac8a6b88e86.zip |
feat(draw) add LV_BLEND_MODE_MULTIPLY
Diffstat (limited to 'scripts/style_api_gen.py')
-rwxr-xr-x | scripts/style_api_gen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/style_api_gen.py b/scripts/style_api_gen.py index e89ed4640..2a3f82cc1 100755 --- a/scripts/style_api_gen.py +++ b/scripts/style_api_gen.py @@ -124,7 +124,7 @@ props = [ {'name': 'BLEND_MODE', 'style_type': 'num', 'var_type': 'lv_blend_mode_t' , 'default':'`LV_BLEND_MODE_NORMAL`', 'inherited': 0, 'layout': 0, 'ext_draw': 0, - 'dsc': "Describes how to blend the colors to the background. The possibel values are `LV_BLEND_MODE_NORMAL/ADDITIVE/SUBTRACTIVE`"}, + 'dsc': "Describes how to blend the colors to the background. The possibel values are `LV_BLEND_MODE_NORMAL/ADDITIVE/SUBTRACTIVE/MULTIPLY`"}, {'name': 'LAYOUT', 'style_type': 'num', 'var_type': 'uint16_t', 'default':0, 'inherited': 0, 'layout': 1, 'ext_draw': 0, |