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

@@ -7,7 +7,7 @@ try:
#
# Open an image from a file
#
image = lv.image(lv.scr_act())
image = lv.image(lv.screen_active())
image.set_src("ffmpeg.png")
image.center()
except Exception as e:
@@ -15,7 +15,7 @@ except Exception as e:
# TODO
# fallback for online examples
label = lv.label(lv.scr_act())
label = lv.label(lv.screen_active())
label.set_text("FFmpeg is not installed")
label.center()