diff options
author | invincibledude <> | 2023-01-29 16:26:31 +0000 |
---|---|---|
committer | invincibledude <> | 2023-01-29 16:26:31 +0000 |
commit | 425eab34641e8e378db610d6a2b23f3ababe1058 (patch) | |
tree | bae57ae9a419211fa4326d3daa8b15942496ab6b /modules/processing.py | |
parent | 9beeef6267ecbcb16f8b24e0092194f0f00142a6 (diff) | |
download | stable-diffusion-webui-gfx803-425eab34641e8e378db610d6a2b23f3ababe1058.tar.gz stable-diffusion-webui-gfx803-425eab34641e8e378db610d6a2b23f3ababe1058.tar.bz2 stable-diffusion-webui-gfx803-425eab34641e8e378db610d6a2b23f3ababe1058.zip |
Extra network in hr abomination fix
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py index 98e83c69..a2a91a5b 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -558,7 +558,8 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed: if type(p) == StableDiffusionProcessingTxt2Img:
if p.enable_hr and p.hr_prompt != '':
_, hr_extra_network_data = extra_networks.parse_prompts(p.all_hr_prompts[0:1])
- extra_network_data.update(hr_extra_network_data)
+ if p.all_hr_prompts != p.all_prompts:
+ extra_network_data.update(hr_extra_network_data)
if p.scripts is not None:
|