setuichange: set custom handlers on any mode

master
thyttan 2024-07-02 22:47:49 +02:00
parent 94c7aa2645
commit b27d82f40f
1 changed files with 20 additions and 20 deletions

View File

@ -85,6 +85,8 @@
setWatch(Bangle.showLauncher, BTN1, {repeat:1,edge:"falling"}) setWatch(Bangle.showLauncher, BTN1, {repeat:1,edge:"falling"})
]; ];
} else if (mode=="custom") { } else if (mode=="custom") {
} else
throw new Error("Unknown UI mode "+E.toJS(mode));
if (options.clock) Bangle.CLOCK=1; if (options.clock) Bangle.CLOCK=1;
if (options.touch) if (options.touch)
Bangle.touchHandler = options.touch; Bangle.touchHandler = options.touch;
@ -105,8 +107,6 @@
setWatch(Bangle.showLauncher, BTN1, {repeat:1,edge:"falling"}) setWatch(Bangle.showLauncher, BTN1, {repeat:1,edge:"falling"})
]; ];
} }
} else
throw new Error("Unknown UI mode "+E.toJS(mode));
if (options.remove) // handler for removing the UI (intervals/etc) if (options.remove) // handler for removing the UI (intervals/etc)
Bangle.uiRemove = options.remove; Bangle.uiRemove = options.remove;
if (options.redraw) // handler for redrawing the UI if (options.redraw) // handler for redrawing the UI