Unverified Commit 67db3b92 authored by Evan W. Patton's avatar Evan W. Patton Committed by GitHub

Fix flydowns not opening before interacting with variable names (#2473)

Change-Id: I048bad34676e2f62e07496534d0e63e6e14a411f
parent 5546b4d4
......@@ -142,7 +142,7 @@ Blockly.FieldFlydown.prototype.showFlydownMaker_ = function() {
return function() {
if (Blockly.FieldFlydown.showPid_ !== 0 &&
Blockly.dragMode_ === Blockly.DRAG_NONE &&
Blockly.FieldTextInput.htmlInput_ === null) {
!Blockly.FieldTextInput.htmlInput_) {
try {
field.showFlydown_();
} catch (e) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment