From ca6fc462c42b98db27a37327fe5dda84bba8a6b9 Mon Sep 17 00:00:00 2001 From: marisaleung Date: Fri, 26 May 2017 17:17:44 -0700 Subject: [PATCH] Fix #1109 --- core/gesture.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/gesture.js b/core/gesture.js index a29d6e17a..8d38858bc 100644 --- a/core/gesture.js +++ b/core/gesture.js @@ -741,7 +741,7 @@ Blockly.Gesture.prototype.isBlockClick_ = function() { Blockly.Gesture.prototype.isFieldClick_ = function() { var fieldEditable = this.startField_ ? this.startField_.isCurrentlyEditable() : false; - return fieldEditable && !this.hasExceededDragRadius_; + return fieldEditable && !this.hasExceededDragRadius_ && !this.flyout_; }; /**