Skip to content

Visible queue false #3088

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,13 @@ jobs:
python -m coverage html -i
working-directory: stable-diffusion-webui
- name: Upload main app output
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: output
path: stable-diffusion-webui/output.txt
- name: Upload coverage HTML
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: htmlcov
Expand Down
10 changes: 6 additions & 4 deletions scripts/controlnet_ui/controlnet_ui_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -823,10 +823,10 @@ def build_sliders(module: str, pp: bool):
self.control_mode,
]
self.module.change(
build_sliders, inputs=inputs, outputs=outputs, show_progress=False
build_sliders, inputs=inputs, outputs=outputs, show_progress=False, queue=False
)
self.pixel_perfect.change(
build_sliders, inputs=inputs, outputs=outputs, show_progress=False
build_sliders, inputs=inputs, outputs=outputs, show_progress=False, queue=False
)

def filter_selected(k: str):
Expand Down Expand Up @@ -1029,6 +1029,7 @@ def shift_preview(is_on):
self.openpose_editor.modal,
],
show_progress=False,
queue=False,
)

def register_create_canvas(self):
Expand Down Expand Up @@ -1126,6 +1127,7 @@ def register_shift_hr_options(self):
inputs=[ControlNetUiGroup.a1111_context.txt2img_enable_hr],
outputs=[self.hr_option],
show_progress=False,
queue=False,
)

def register_shift_upload_mask(self):
Expand All @@ -1140,6 +1142,7 @@ def register_shift_upload_mask(self):
inputs=[self.mask_upload],
outputs=[self.mask_image_group, self.effective_region_mask],
show_progress=False,
queue=False,
)

def register_shift_pulid_mode(self):
Expand All @@ -1148,6 +1151,7 @@ def register_shift_pulid_mode(self):
inputs=[self.model],
outputs=[self.pulid_mode],
show_progress=False,
queue=False,
)

def register_sync_batch_dir(self):
Expand All @@ -1172,14 +1176,12 @@ def determine_batch_dir(batch_dir, fallback_dir, fallback_fallback_dir):
fn=determine_batch_dir,
inputs=batch_dirs,
outputs=[self.batch_image_dir_state],
queue=False,
)

ControlNetUiGroup.a1111_context.img2img_batch_output_dir.blur(
fn=lambda a: a,
inputs=[ControlNetUiGroup.a1111_context.img2img_batch_output_dir],
outputs=[self.output_dir_state],
queue=False,
)

def register_clear_preview(self):
Expand Down