refactor: scr -> screen, act->active, del->delete, remove in obj_clear_flag/state

This commit is contained in:
Gabor Kiss-Vamosi
2023-10-12 20:37:27 +02:00
parent 0ff2d1c2e4
commit 9ec5417dd3
468 changed files with 1330 additions and 1288 deletions

View File

@@ -46,7 +46,7 @@ void lv_example_style_14(void)
lv_obj_t * btn;
lv_obj_t * label;
btn = lv_button_create(lv_scr_act());
btn = lv_button_create(lv_screen_active());
lv_obj_align(btn, LV_ALIGN_TOP_MID, 0, 20);
label = lv_label_create(btn);
@@ -54,7 +54,7 @@ void lv_example_style_14(void)
new_theme_init_and_set();
btn = lv_button_create(lv_scr_act());
btn = lv_button_create(lv_screen_active());
lv_obj_align(btn, LV_ALIGN_BOTTOM_MID, 0, -20);
label = lv_label_create(btn);