fix(examples) adjust constant names in Micropython examples (#3532)
Due to spurious enums (https://github.com/lvgl/lv_binding_micropython/issues/199) wrong constant names were generated. Fix these constants.
This commit is contained in:
@@ -19,7 +19,7 @@ btn = lv.btn(tile2)
|
||||
label = lv.label(btn)
|
||||
label.set_text("Scroll up or right")
|
||||
|
||||
btn.set_size(lv.SIZE.CONTENT, lv.SIZE.CONTENT)
|
||||
btn.set_size(lv.SIZE_CONTENT, lv.SIZE_CONTENT)
|
||||
btn.center()
|
||||
|
||||
# Tile3: a list
|
||||
|
||||
Reference in New Issue
Block a user