From 3e83f01306f8a0635b804d8353284f471937d871 Mon Sep 17 00:00:00 2001 From: eleanor <44651387+elykittytee@users.noreply.github.com> Date: Fri, 31 Mar 2023 14:50:54 -0500 Subject: [PATCH] updated app.js changed order of loaded widgets and drawing watchface --- apps/encourageclk/app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/encourageclk/app.js b/apps/encourageclk/app.js index 01cfd7fbc..8a2f60097 100644 --- a/apps/encourageclk/app.js +++ b/apps/encourageclk/app.js @@ -76,8 +76,8 @@ function loader() { //ready set go! g.clear(); -loader(); //drawthings - -Bangle.setUI("clock"); +Bangle.setUI("clock"); //load all the things Bangle.drawWidgets(); Bangle.loadWidgets(); + +loader(); //draw all the things