We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87ca155 commit b1477a0Copy full SHA for b1477a0
apps/quicklaunch/boot.js
@@ -1,4 +1,5 @@
1
{
2
+setTimeout(() => { // wrap in zero ms timeout so the foreground app loads first.
3
const storage = require("Storage");
4
let settings = storage.readJSON("quicklaunch.json", true) || {};
5
@@ -40,4 +41,5 @@
40
41
if (ud == 1) trace = leaveTrace("d"); // d=down.
42
launchApp(trace);
43
});
44
+}, 0);
45
}
0 commit comments