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

Merge pull request #2612 from node-red-hitachi/fix-group-position

Fix group position of empty group with multi-line label
This commit is contained in:
Nick O'Leary 2020-06-12 08:48:33 +01:00 committed by GitHub
commit f4f99f594d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4277,7 +4277,9 @@ RED.view = (function() {
var labelPos = d.style["label-position"] || "nw"; var labelPos = d.style["label-position"] || "nw";
d.h += h; d.h += h;
if (labelPos[0] === "n") { if (labelPos[0] === "n") {
d.y -= h; if (d.nodes.length > 0) {
d.y -= h;
}
} }
} }