Fixed bug that prevented delete areas from updating when flyout width changed.

This commit is contained in:
Aaron Dodson
2021-06-16 20:08:44 +00:00
parent e5a2df301a
commit de220a3ff0

View File

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