1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-04 07:52:46 +08:00

Don't load the view coordinates when loading a workflow from the history.

I think this makes things slightly less annoying for some users.
This commit is contained in:
comfyanonymous
2024-06-03 19:48:27 -04:00
parent 809cc85a8e
commit cb8d0ebccc
2 changed files with 3 additions and 3 deletions

View File

@@ -228,7 +228,7 @@ class ComfyList {
$el("button", {
textContent: "Load",
onclick: async () => {
await app.loadGraphData(item.prompt[3].extra_pnginfo.workflow);
await app.loadGraphData(item.prompt[3].extra_pnginfo.workflow, true, false);
if (item.outputs) {
app.nodeOutputs = item.outputs;
}