diff --git a/apps/skyspy/skyspy.app.js b/apps/skyspy/skyspy.app.js index 5dec5f148..fd651a6fc 100644 --- a/apps/skyspy/skyspy.app.js +++ b/apps/skyspy/skyspy.app.js @@ -320,9 +320,16 @@ function onSwipe(dir) { nextScreen(); } +var last_b = 0; function touchHandler(d) { let x = Math.floor(d.x); let y = Math.floor(d.y); + + if (d.b != 1 || last_b != 0) { + last_b = d.b; + return; + } + last_b = d.b; if ((x