[stopwatch] Fix refactoring remains
Closes #264 Signed-off-by: k <k@klabz.org>
This commit is contained in:
parent
bbf7d3aa14
commit
54e8f5771d
1 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ class StopwatchApp():
|
||||||
|
|
||||||
No other swipe event is possible for this application.
|
No other swipe event is possible for this application.
|
||||||
"""
|
"""
|
||||||
if not self._started_at:
|
if not self._timer._started_at:
|
||||||
self._reset()
|
self._reset()
|
||||||
return True # Request system default handling
|
return True # Request system default handling
|
||||||
|
|
||||||
|
@ -84,7 +84,7 @@ class StopwatchApp():
|
||||||
draw.fill(0, 0, 120, 240, 120)
|
draw.fill(0, 0, 120, 240, 120)
|
||||||
return
|
return
|
||||||
y = 240 - 6 - (len(splits) * 24)
|
y = 240 - 6 - (len(splits) * 24)
|
||||||
|
|
||||||
draw.set_font(fonts.sans24)
|
draw.set_font(fonts.sans24)
|
||||||
draw.set_color(wasp.system.theme('mid'))
|
draw.set_color(wasp.system.theme('mid'))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue