From 3f7f137e009890f902977a719177d74b0bce6eb0 Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Wed, 28 Jul 2021 15:16:31 -0700 Subject: [PATCH] Fix issue where the trashcan flyout would remain an active delete region even when closed with the continuous toolbox plugin --- core/trashcan.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/trashcan.js b/core/trashcan.js index 831a26ba4..424f05989 100644 --- a/core/trashcan.js +++ b/core/trashcan.js @@ -440,6 +440,7 @@ Blockly.Trashcan.prototype.closeFlyout = function() { } this.flyout.hide(); this.fireUiEvent_(false); + this.workspace_.recordDragTargets(); }; /**