aboutsummaryrefslogtreecommitdiff
path: root/modules/processing_scripts
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-08-12 18:36:30 +0300
committerAUTOMATIC1111 <16777216c@gmail.com>2023-08-12 18:36:30 +0300
commit6816ad5ed806b9ada81b4fab82e21a9455fa5720 (patch)
treea1cffbb420d53b7c87746dd8d8741c66aec7d38f /modules/processing_scripts
parent4e8690906c02f14a81974200775bfc81718a9250 (diff)
fix broken reuse seed
Diffstat (limited to 'modules/processing_scripts')
-rw-r--r--modules/processing_scripts/seed.py2
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