Hi,
the signature for the rect method requires 4 floats (x, y, w, h).
Two method calls use 5 args:
|
(screen.width / 2) - (width / 2) - 8, 1, width + 16, 17, 6)) |
|
(screen.width / 2) - (width / 2) - 8, 1, width + 16, 17, 6).stroke(1)) |
Removing ,1, the last arg solved the problem for me.
I will create a pull request as a follow up to this ticket.
Hi,
the signature for the rect method requires 4 floats (x, y, w, h).
Two method calls use 5 args:
badger2350/firmware/apps/gallery/__init__.py
Line 138 in d37e3b8
badger2350/firmware/apps/gallery/__init__.py
Line 141 in d37e3b8
Removing
, the last arg solved the problem for me.,1I will create a pull request as a follow up to this ticket.