diff --git a/apps/launch/app-bangle2.js b/apps/launch/app.js similarity index 90% rename from apps/launch/app-bangle2.js rename to apps/launch/app.js index 156eecdf4..42aba1bb9 100644 --- a/apps/launch/app-bangle2.js +++ b/apps/launch/app.js @@ -63,8 +63,11 @@ E.showScroller({ } }); -// pressing button goes back -setWatch(_=>load(), BTN1, {edge:"falling"}); +// on bangle.js 2, the screen is used for navigating, so the single button goes back +// on bangle.js 1, the buttons are used for navigating +if (process.env.HWVERSION==2) { + setWatch(_=>load(), BTN1, {edge:"falling"}); +} // 10s of inactivity goes back to clock Bangle.setLocked(false); // unlock initially