fix for #43
This commit is contained in:
parent
63a3ae2b4c
commit
47be7e1f1b
1 changed files with 1 additions and 1 deletions
2
webui.py
2
webui.py
|
@ -1600,7 +1600,7 @@ def img2img(prompt: str, init_img, init_img_with_mask, steps: int, sampler_index
|
||||||
initial_seed = processed.seed
|
initial_seed = processed.seed
|
||||||
initial_info = processed.info
|
initial_info = processed.info
|
||||||
|
|
||||||
p.init_img = processed.images[0]
|
p.init_images = [processed.images[0]]
|
||||||
p.seed = processed.seed + 1
|
p.seed = processed.seed + 1
|
||||||
p.denoising_strength = max(p.denoising_strength * 0.95, 0.1)
|
p.denoising_strength = max(p.denoising_strength * 0.95, 0.1)
|
||||||
history.append(processed.images[0])
|
history.append(processed.images[0])
|
||||||
|
|
Loading…
Reference in a new issue