diff options
author | Gabor Kiss-Vamosi <kisvegabor@gmail.com> | 2023-10-31 19:10:02 +0100 |
---|---|---|
committer | Gabor Kiss-Vamosi <kisvegabor@gmail.com> | 2023-10-31 19:10:02 +0100 |
commit | d28f80d3626db300540efa78b6218d20a81aca25 (patch) | |
tree | e8edc92f26921798563d9d96a5fff7cdcd3b0d8d /scripts/style_api_gen.py | |
parent | 01f2949acc9a24aef155ed5cb8409e7badff13ca (diff) | |
download | lvgl-d28f80d3626db300540efa78b6218d20a81aca25.tar.gz lvgl-d28f80d3626db300540efa78b6218d20a81aca25.zip |
refactor(style): rename shadow_ofs to shadow_offset
Diffstat (limited to 'scripts/style_api_gen.py')
-rwxr-xr-x | scripts/style_api_gen.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/style_api_gen.py b/scripts/style_api_gen.py index af6c1660f..f0bdcd471 100755 --- a/scripts/style_api_gen.py +++ b/scripts/style_api_gen.py @@ -220,11 +220,11 @@ props = [ 'style_type': 'num', 'var_type': 'lv_coord_t', 'default':0, 'inherited': 0, 'layout': 0, 'ext_draw': 1, 'dsc': "Set the width of the shadow in pixels. The value should be >= 0."}, -{'name': 'SHADOW_OFS_X', +{'name': 'SHADOW_OFFSET_X', 'style_type': 'num', 'var_type': 'lv_coord_t' , 'default':0, 'inherited': 0, 'layout': 0, 'ext_draw': 1, 'dsc': "Set an offset on the shadow in pixels in X direction. "}, -{'name': 'SHADOW_OFS_Y', +{'name': 'SHADOW_OFFSET_Y', 'style_type': 'num', 'var_type': 'lv_coord_t' , 'default':0, 'inherited': 0, 'layout': 0, 'ext_draw': 1, 'dsc': "Set an offset on the shadow in pixels in Y direction. "}, |