Commit febea8c1 authored by comfyanonymous's avatar comfyanonymous
Browse files

Merge branch 'bugfix/img-offset' of https://github.com/ltdrdata/ComfyUI

parents 9caab938 d43cff21
...@@ -368,7 +368,11 @@ export class ComfyApp { ...@@ -368,7 +368,11 @@ export class ComfyApp {
shiftY = w.last_y; shiftY = w.last_y;
if (w.computeSize) { if (w.computeSize) {
shiftY += w.computeSize()[1] + 4; shiftY += w.computeSize()[1] + 4;
} else { }
else if(w.computedHeight) {
shiftY += w.computedHeight;
}
else {
shiftY += LiteGraph.NODE_WIDGET_HEIGHT + 4; shiftY += LiteGraph.NODE_WIDGET_HEIGHT + 4;
} }
} else { } else {
......
...@@ -129,6 +129,7 @@ function addMultilineWidget(node, name, opts, app) { ...@@ -129,6 +129,7 @@ function addMultilineWidget(node, name, opts, app) {
w.y = y; w.y = y;
if (w.type === "customtext") { if (w.type === "customtext") {
y += freeSpace; y += freeSpace;
w.computedHeight = freeSpace - multi.length*4;
} else if (w.computeSize) { } else if (w.computeSize) {
y += w.computeSize()[1] + 4; y += w.computeSize()[1] + 4;
} else { } else {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment