mirror of
https://github.com/google/blockly.git
synced 2026-01-10 18:37:09 +01:00
Fix bottom horizontal flyout delete areas (#3551)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user