1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Ensure quick-add dialog does not obscure ghost node when shifted

This commit is contained in:
Nick O'Leary 2022-07-20 10:37:40 +01:00
parent 1b94cc3ac0
commit e120bad779
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9

View File

@ -269,8 +269,8 @@ RED.typeSearch = (function() {
moveCallback = opts.move;
RED.events.emit("type-search:open");
//shade.show();
if ($("#red-ui-main-container").height() - opts.y - 150 < 0) {
opts.y = opts.y - 235;
if ($("#red-ui-main-container").height() - opts.y - 195 < 0) {
opts.y = opts.y - 275;
}
dialog.css({left:opts.x+"px",top:opts.y+"px"}).show();
searchResultsDiv.slideDown(300);