Load widgets in timeout

master
Martin Boonk 2022-03-03 18:38:12 +01:00
parent 87c74b7536
commit 20f4c10c9c
1 changed files with 4 additions and 2 deletions

View File

@ -754,7 +754,9 @@ function clearWidgetsDraw(){
} }
} }
Bangle.loadWidgets(); setTimeout(()=>{
clearWidgetsDraw(); Bangle.loadWidgets();
clearWidgetsDraw();
}, 100);
handleLock(Bangle.isLocked(), true); handleLock(Bangle.isLocked(), true);