Fix wrong method call

This commit is contained in:
Erik Pasternak
2019-07-18 14:19:22 -07:00
parent bacfae24dd
commit 3adc554f6b

View File

@@ -368,7 +368,7 @@ Blockly.RenderedConnection.prototype.disconnect = function() {
if (rehide) {
// Set the hidden state for the connection back to true so shadow blocks
// will be hidden.
superiorConnection.setHidden(true);
superiorConnection.hideAll();
}
};