"docs/source/ko/using-diffusers/inpaint.md" did not exist on "ce1c27adc85916a802db579df789d990fd14e8bc"
Unverified Commit 45bf88d8 authored by Kristjan Pärt's avatar Kristjan Pärt Committed by GitHub
Browse files

Fix queue on change to respect auto queue checkbox (#2608)

* Fix render on change not respecting auto queue checkbox

Fix issue where autoQueueEnabled checkbox is ignored for changes if autoQueueMode is left on `change`

* Make check more specific
parent ef5a28b5
...@@ -384,7 +384,7 @@ export class ComfyUI { ...@@ -384,7 +384,7 @@ export class ComfyUI {
autoQueueModeEl.style.display = "none"; autoQueueModeEl.style.display = "none";
api.addEventListener("graphChanged", () => { api.addEventListener("graphChanged", () => {
if (this.autoQueueMode === "change") { if (this.autoQueueMode === "change" && this.autoQueueEnabled === true) {
if (this.lastQueueSize === 0) { if (this.lastQueueSize === 0) {
this.graphHasChanged = false; this.graphHasChanged = false;
app.queuePrompt(0, this.batchCount); app.queuePrompt(0, this.batchCount);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment