mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-13 15:02:37 +08:00
pile changes if consecutively changing
This commit is contained in:
parent
901d210f06
commit
af2b660125
@ -1311,13 +1311,16 @@ export class ComfyApp {
|
|||||||
this.loadGraphData();
|
this.loadGraphData();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.changing = false // only used for administration for saved values for ctrl + Z
|
||||||
|
|
||||||
// Save current workflow automatically
|
// Save current workflow automatically
|
||||||
setInterval(function(){
|
setInterval(function(){
|
||||||
const previous_workflow = localStorage.getItem("workflow")
|
const previous_workflow = localStorage.getItem("workflow")
|
||||||
const workflow = JSON.stringify(this.graph.serialize())
|
const workflow = JSON.stringify(this.graph.serialize())
|
||||||
if(previous_workflow !== workflow){
|
if(previous_workflow !== workflow){
|
||||||
localStorage.setItem("ctrlZ", previous_workflow); // Save workflow for loading at ctrl + Z
|
if(!this.changing) localStorage.setItem("ctrlZ", previous_workflow); // Save workflow for loading at ctrl + Z
|
||||||
}
|
this.changing = truep
|
||||||
|
}else this.changing = false;
|
||||||
localStorage.setItem("workflow", workflow); // Save current workflow for loading at startup
|
localStorage.setItem("workflow", workflow); // Save current workflow for loading at startup
|
||||||
},1000);
|
},1000);
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user