|
|
|
@ -597,16 +597,23 @@ export class ComfyUI {
|
|
|
|
|
if (!confirmClear.value || confirm("Clear workflow?")) {
|
|
|
|
|
app.clean();
|
|
|
|
|
app.graph.clear();
|
|
|
|
|
app.resetView();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}),
|
|
|
|
|
$el("button", {
|
|
|
|
|
id: "comfy-load-default-button", textContent: "Load Default", onclick: async () => {
|
|
|
|
|
if (!confirmClear.value || confirm("Load default workflow?")) {
|
|
|
|
|
app.resetView();
|
|
|
|
|
await app.loadGraphData()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}),
|
|
|
|
|
$el("button", {
|
|
|
|
|
id: "comfy-reset-view-button", textContent: "Reset View", onclick: async () => {
|
|
|
|
|
app.resetView();
|
|
|
|
|
}
|
|
|
|
|
}),
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
const devMode = this.settings.addSetting({
|
|
|
|
|