From 50fcdfb7ac168bf933545244b4d49a6d16b23445 Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Thu, 17 Jun 2021 15:39:15 +0000 Subject: [PATCH] Keep horizontal flyout delete area in sync with its bounds. --- core/flyout_horizontal.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/flyout_horizontal.js b/core/flyout_horizontal.js index c201ce272..b01a84437 100644 --- a/core/flyout_horizontal.js +++ b/core/flyout_horizontal.js @@ -367,6 +367,7 @@ Blockly.HorizontalFlyout.prototype.reflowInternal_ = function() { // Record the height for workspace metrics and .position. this.height_ = flyoutHeight; this.position(); + this.targetWorkspace.recordDragTargets(); } };