From de220a3ff0841486e15c0dd2c73eeb0a6a47fca3 Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Wed, 16 Jun 2021 20:08:44 +0000 Subject: [PATCH] Fixed bug that prevented delete areas from updating when flyout width changed. --- core/flyout_vertical.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/flyout_vertical.js b/core/flyout_vertical.js index 90b0d9765..a09b3fb8e 100644 --- a/core/flyout_vertical.js +++ b/core/flyout_vertical.js @@ -375,6 +375,7 @@ Blockly.VerticalFlyout.prototype.reflowInternal_ = function() { // Record the width for workspace metrics and .position. this.width_ = flyoutWidth; this.position(); + this.targetWorkspace.recordDragTargets(); } };