From b9dd13cde015002e875974b3f08be73c98c6264a Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Tue, 8 Oct 2019 17:29:53 -0700 Subject: [PATCH] Fix #3169 (#3199) --- core/rendered_connection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rendered_connection.js b/core/rendered_connection.js index a29ea967d..55ac387ad 100644 --- a/core/rendered_connection.js +++ b/core/rendered_connection.js @@ -80,10 +80,10 @@ Blockly.utils.object.inherits(Blockly.RenderedConnection, Blockly.Connection); * @package */ Blockly.RenderedConnection.prototype.dispose = function() { + Blockly.RenderedConnection.superClass_.dispose.call(this); if (this.tracked_) { this.db_.removeConnection(this, this.y_); } - Blockly.RenderedConnection.superClass_.dispose.call(this); }; /**