diff options
author | InvincibleDude <81354513+InvincibleDude@users.noreply.github.com> | 2023-03-10 12:13:55 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-10 12:13:55 +0000 |
commit | f6e27378404631d951656388fc178b784fe1495b (patch) | |
tree | f9366c32ac4f611b2e8e1bbd94723361fde9147a /modules/processing.py | |
parent | b9fdb9f701e576ce48458fdf756187c2d1725649 (diff) | |
download | stable-diffusion-webui-gfx803-f6e27378404631d951656388fc178b784fe1495b.tar.gz stable-diffusion-webui-gfx803-f6e27378404631d951656388fc178b784fe1495b.tar.bz2 stable-diffusion-webui-gfx803-f6e27378404631d951656388fc178b784fe1495b.zip |
Negative prompt fix
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py index f5cc2433..694e2637 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -615,7 +615,7 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed: hr_prompts, hr_negative_prompts = prompts, negative_prompts
else:
hr_prompts = p.all_hr_prompts[n * p.batch_size:(n + 1) * p.batch_size]
- hr_negative_prompts = p.all_negative_prompts[n * p.batch_size:(n + 1) * p.batch_size]
+ hr_negative_prompts = p.all_hr_negative_prompts[n * p.batch_size:(n + 1) * p.batch_size]
seeds = p.all_seeds[n * p.batch_size:(n + 1) * p.batch_size]
subseeds = p.all_subseeds[n * p.batch_size:(n + 1) * p.batch_size]
|