Merge pull request #1137 from marisaleung/develop_bugfix

Fix #1109
This commit is contained in:
marisaleung
2017-05-31 15:50:11 -07:00
committed by GitHub

View File

@@ -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_;
};
/**