Skip to content

Commit

Permalink
Merge pull request #307 from XuNeo/remove-always-zero
Browse files Browse the repository at this point in the history
remove 'always_zero' from image header
  • Loading branch information
kisvegabor committed Dec 19, 2023
2 parents 454f555 + 1517330 commit 7024ccc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/example1.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def init_gui(self):
image.align(lv.ALIGN.CENTER, 0, 0)
image_dsc = lv.image_dsc_t(
{
"header": {"always_zero": 0, "w": 100, "h": 75, "cf": lv.COLOR_FORMAT.NATIVE},
"header": {"w": 100, "h": 75, "cf": lv.COLOR_FORMAT.NATIVE},
"data_size": len(image_data),
"data": image_data,
}
Expand Down

0 comments on commit 7024ccc

Please sign in to comment.