mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
Variations are not working properly #305
This commit is contained in:
parent
2938dc39fc
commit
a1305060ce
@ -174,7 +174,7 @@ def process_images(p: StableDiffusionProcessing) -> Processed:
|
|||||||
if type(p.seed) == list:
|
if type(p.seed) == list:
|
||||||
all_seeds = p.seed
|
all_seeds = p.seed
|
||||||
else:
|
else:
|
||||||
all_seeds = [int(p.seed + x) for x in range(len(all_prompts))]
|
all_seeds = [int(p.seed + (x if p.subseed_strength == 0 else 0)) for x in range(len(all_prompts))]
|
||||||
|
|
||||||
if type(p.subseed) == list:
|
if type(p.subseed) == list:
|
||||||
all_subseeds = p.subseed
|
all_subseeds = p.subseed
|
||||||
|
Loading…
Reference in New Issue
Block a user