mirror of
https://github.com/lvgl/lvgl.git
synced 2026-05-10 12:47:51 +08:00
f3370d01c9
- The `enum` output into ./src/widgets/property/lv_style_properties.h
now needs to be coded as `typedef enum {...} _lv_property_style_id_t;`
as a work-around for a doc-build bug in the Breathe library.
- Running `properties.py` on a Windows system previously didn't work
because the script would generate an exception when reading the
character represented by the `U+F001` character in font files. On
Windows systems, it was using different encoding. Fix was to
explicitly specify `encoding='utf-8'` in the `open()` function.
- Add doc-string under `main()` function to say what its purpose is.