Browse Source

Restored accidently removed code

pull/49/head
pythongosssss 2 years ago
parent
commit
0e7b98e429
  1. 4
      web/scripts/app.js

4
web/scripts/app.js

@ -517,6 +517,10 @@ class ComfyApp {
}
}
for (const output of nodeData["output"]) {
this.addOutput(output, output);
}
const s = this.computeSize();
s[0] = Math.max(config.minWidth, s[0] * 1.5);
s[1] = Math.max(config.minHeight, s[1]);

Loading…
Cancel
Save