Fix wrong method call

This commit is contained in:
Erik Pasternak
2019-07-18 14:19:22 -07:00
committed by Rachel Fenichel
parent c95d5771c8
commit 7e3bdf024f

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();
}
};