Load widgets in timeout

pull/1916/head
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();
clearWidgetsDraw();
setTimeout(()=>{
Bangle.loadWidgets();
clearWidgetsDraw();
}, 100);
handleLock(Bangle.isLocked(), true);