do not add mask blur to infotext if there is no mask

This commit is contained in:
AUTOMATIC 2023-03-28 22:20:31 +03:00
parent 433b3ab701
commit 3856ada5cc
1 changed files with 2 additions and 1 deletions

View File

@ -157,7 +157,8 @@ def img2img(id_task: str, mode: int, prompt: str, negative_prompt: str, prompt_s
if shared.cmd_opts.enable_console_prompts:
print(f"\nimg2img: {prompt}", file=shared.progress_print_out)
p.extra_generation_params["Mask blur"] = mask_blur
if mask:
p.extra_generation_params["Mask blur"] = mask_blur
if is_batch:
assert not shared.cmd_opts.hide_ui_dir_config, "Launched with --hide-ui-dir-config, batch img2img disabled"