Make blobclk redraw sooner when the LCD is switched on, so that the time is visible sooner

master
James Stanley 2021-03-17 14:28:37 +00:00
parent 37c8728696
commit 03e8e0ccf4
1 changed files with 1 additions and 1 deletions

View File

@ -86,9 +86,9 @@ function clearTimers() {
} }
function startTimers() { function startTimers() {
g.clear(); g.clear();
redraw();
Bangle.drawWidgets(); Bangle.drawWidgets();
intervalRef = setInterval(redraw,1000); intervalRef = setInterval(redraw,1000);
redraw();
} }
Bangle.loadWidgets(); Bangle.loadWidgets();
startTimers(); startTimers();