ctrlpad: turn off debug logs

master
Rob Pilling 2024-04-24 17:25:48 +01:00
parent 0887e59337
commit 4d2402268f
1 changed files with 5 additions and 5 deletions

View File

@ -179,9 +179,9 @@
if(e.y <= 40){ if(e.y <= 40){
state = State.TopDrag state = State.TopDrag
startY = e.y; startY = e.y;
console.log(" topdrag detected, starting @ " + startY); //console.log(" topdrag detected, starting @ " + startY);
}else{ }else{
console.log(" ignoring this drag (too low @ " + e.y + ")"); //console.log(" ignoring this drag (too low @ " + e.y + ")");
state = State.IgnoreCurrent; state = State.IgnoreCurrent;
ui = undefined ui = undefined
} }
@ -190,9 +190,9 @@
case State.TopDrag: case State.TopDrag:
if(e.b === 0){ if(e.b === 0){
console.log("topdrag stopped, distance: " + (e.y - startY)); //console.log("topdrag stopped, distance: " + (e.y - startY));
if(e.y > startY + dragDistance){ if(e.y > startY + dragDistance){
console.log("activating"); //console.log("activating");
state = State.Active; state = State.Active;
startY = 0; startY = 0;
Bangle.prependListener("touch", onTouch); Bangle.prependListener("touch", onTouch);
@ -200,7 +200,7 @@
ui!.overlay.setBottom(g.getHeight()); ui!.overlay.setBottom(g.getHeight());
break; break;
} }
console.log("returning to idle"); //console.log("returning to idle");
state = State.Idle; state = State.Idle;
ui?.overlay.hide(); ui?.overlay.hide();
ui = undefined; ui = undefined;