aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAarni Koskela <akx@iki.fi>2023-05-17 10:26:32 +0300
committerAarni Koskela <akx@iki.fi>2023-05-17 10:26:32 +0300
commit315f109427a5dbbf48b0da560640523800fe3c1d (patch)
treeb9f839867157d7667295da667d790bb2de4c0d9e
parent4b07f2f584596604c4499efb0b0295e96985080f (diff)
Copy s_min_uncond to Processed
Should fix #10416
-rw-r--r--modules/processing.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/processing.py b/modules/processing.py
index 678c4468..cd63b9a6 100644
--- a/modules/processing.py
+++ b/modules/processing.py
@@ -316,6 +316,7 @@ class Processed:
self.s_tmin = p.s_tmin
self.s_tmax = p.s_tmax
self.s_noise = p.s_noise
+ self.s_min_uncond = p.s_min_uncond
self.sampler_noise_scheduler_override = p.sampler_noise_scheduler_override
self.prompt = self.prompt if type(self.prompt) != list else self.prompt[0]
self.negative_prompt = self.negative_prompt if type(self.negative_prompt) != list else self.negative_prompt[0]