fix(properties.py): fix to comply with adjustments

This commit is contained in:
Victor Wheeler
2025-06-25 10:35:17 -06:00
committed by Gabor Kiss-Vamosi
parent 6d546a8695
commit 3a4cf38ef3
+2 -2
View File
@@ -173,7 +173,7 @@ def write_style_header(output, properties_by_widget):
/* *INDENT-OFF* */
typedef enum {{
enum _lv_property_style_id_t {{
''')
for property in properties:
@@ -184,7 +184,7 @@ typedef enum {{
f" LV_PROPERTY_ID(STYLE, {name.upper() + ',' :25} {id_type+',' :28} LV_STYLE_{name.upper()}),\n"
)
f.write('} lv_property_style_id_t;\n\n')
f.write('};\n\n')
f.write('#endif\n')
f.write('#endif\n')