You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Permanent screens are guarded with #if !defined(LV_USE_XML) || LV_USE_XML == 0 so it fires when the macro is absent or explicitly 0. Inside the Editor (LV_USE_XML == 1 behavior is unchanged, screens are still created from XML.
Prefix all generated header guards with LVGL_PRO_ to avoid collisions with similar names (for example, a list component could conflict with list header file from a 3rd-party or platform library).
Screen name from XML was not used in generating header guard - filename was used instead.
lv_objradio_button prop. Was incorrectly mapped as a flag when it is a boolean property - making it unusable.