diff --git a/core/touch_gesture.js b/core/touch_gesture.js index 26adc0fcc..6ff5dfcfe 100644 --- a/core/touch_gesture.js +++ b/core/touch_gesture.js @@ -110,7 +110,7 @@ Blockly.TouchGesture.ZOOM_OUT_MULTIPLIER = 6; */ Blockly.TouchGesture.prototype.doStart = function(e) { Blockly.TouchGesture.superClass_.doStart.call(this, e); - if (Blockly.Touch.isTouchEvent(e)) { + if (!this.isEnding_ && Blockly.Touch.isTouchEvent(e)) { this.handleTouchStart(e); } };