From 016a4f1b0a59c34800ffd60a25fdf7d357537406 Mon Sep 17 00:00:00 2001 From: Sam El-Husseini Date: Mon, 6 Jan 2020 17:03:41 -0800 Subject: [PATCH] Fix bottom horizontal flyout delete areas (#3551) --- core/flyout_horizontal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/flyout_horizontal.js b/core/flyout_horizontal.js index 23bcb918b..1bb701790 100644 --- a/core/flyout_horizontal.js +++ b/core/flyout_horizontal.js @@ -354,7 +354,7 @@ Blockly.HorizontalFlyout.prototype.getClientRect = function() { var height = flyoutRect.height; return new Blockly.utils.Rect(-BIG_NUM, top + height, -BIG_NUM, BIG_NUM); } else { // Bottom. - return new Blockly.utils.Rect(top, -BIG_NUM, -BIG_NUM, BIG_NUM); + return new Blockly.utils.Rect(top, BIG_NUM, -BIG_NUM, BIG_NUM); } };