Use upper graph in subgraph stack for saved offset/scale

This commit is contained in:
space-nuko
2023-05-17 20:37:12 -05:00
parent 1408d12575
commit a9cebc23d1
2 changed files with 12 additions and 3 deletions

View File

@@ -78,6 +78,9 @@ export default class ComfyPickImageNode extends ComfyGraphNode {
this.setOutputData(2, this._image.width);
this.setOutputData(3, this._image.height);
// XXX: image size doesn't load until the <img> element is ready on
// the page so this can come after several frames' worth of
// execution
this.widthWidget.value = this._image.width
this.heightWidget.value = this._image.height
}