apps: calc: Correct after draw565 bug fix

Currently the coordindates used for line drawing are "tuned" for a bug in
the line drawing code (and now draw off the edge of the screen). Fix this.

Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
This commit is contained in:
Daniel Thompson 2020-12-28 14:32:14 +00:00
parent 314947278d
commit 0884d22799

View file

@ -84,9 +84,9 @@ class CalculatorApp():
draw.set_color(wasp.system.theme('accent-lo')) draw.set_color(wasp.system.theme('accent-lo'))
for i in range(4): for i in range(4):
# horizontal lines # horizontal lines
draw.line(x0=0,y0=(i+1)*47,x1=240,y1=(i+1)*47) draw.line(x0=0,y0=(i+1)*47,x1=239,y1=(i+1)*47)
# vertical lines # vertical lines
draw.line(x0=(i+1)*47,y0=47,x1=(i+1)*47,y1=240) draw.line(x0=(i+1)*47,y0=47,x1=(i+1)*47,y1=239)
# Draw button label: # Draw button label:
draw.set_color(wasp.system.theme('accent-hi')) draw.set_color(wasp.system.theme('accent-hi'))
for x in range(5): for x in range(5):