just found,
keeping swipe back to clock as Lt to Rt swipe,
and make back swipe as Rt to Lt swipe is the best choice,
keeping up and down swipe for choosing things.
do so by modifiying the lr === 1 into lr === -1 below
function goBack(lr, _) {
// if it is a left to right swipe
if (lr === 1) {
// if we're in an app that has a back button, run the callback for it
if (global.BACK && countHandlers("swipe")<=settings.standardNumSwipeHandlers && countHandlers("drag")<=settings.standardNumDragHandlers) {
global.BACK();
}
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
just found,
keeping swipe back to clock as Lt to Rt swipe,
and make back swipe as Rt to Lt swipe is the best choice,
keeping up and down swipe for choosing things.
do so by modifiying the lr === 1 into lr === -1 below
}