diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-12 15:36:30 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-12 15:36:30 +0000 |
commit | 6816ad5ed806b9ada81b4fab82e21a9455fa5720 (patch) | |
tree | a1cffbb420d53b7c87746dd8d8741c66aec7d38f /modules/processing_scripts | |
parent | 4e8690906c02f14a81974200775bfc81718a9250 (diff) | |
download | stable-diffusion-webui-gfx803-6816ad5ed806b9ada81b4fab82e21a9455fa5720.tar.gz stable-diffusion-webui-gfx803-6816ad5ed806b9ada81b4fab82e21a9455fa5720.tar.bz2 stable-diffusion-webui-gfx803-6816ad5ed806b9ada81b4fab82e21a9455fa5720.zip |
fix broken reuse seed
Diffstat (limited to 'modules/processing_scripts')
-rw-r--r-- | modules/processing_scripts/seed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing_scripts/seed.py b/modules/processing_scripts/seed.py index 1ec20339..cc90775a 100644 --- a/modules/processing_scripts/seed.py +++ b/modules/processing_scripts/seed.py @@ -54,7 +54,7 @@ class ScriptSeed(scripts.ScriptBuiltin): ]
self.on_after_component(lambda x: connect_reuse_seed(self.seed, reuse_seed, x.component, False), elem_id=f'generation_info_{self.tabname}')
- self.on_after_component(lambda x: connect_reuse_seed(self.seed, reuse_subseed, x.component, True), elem_id=f'generation_info_{self.tabname}')
+ self.on_after_component(lambda x: connect_reuse_seed(subseed, reuse_subseed, x.component, True), elem_id=f'generation_info_{self.tabname}')
return self.seed, subseed, subseed_strength
|