aboutsummaryrefslogtreecommitdiff
path: root/modules/processing.py
diff options
context:
space:
mode:
authorinvincibledude <>2023-01-22 15:44:59 +0300
committerinvincibledude <>2023-01-22 15:44:59 +0300
commitbbb1e35ea29f8cfc6a6db3b28b10bfbc99033c70 (patch)
treef48d781f543a27f3df9e1420b06a8e8697495b29 /modules/processing.py
parentb0ae92d605dfb65314b610589f84b643d535261e (diff)
UI and PNG info improvements
Diffstat (limited to 'modules/processing.py')
-rw-r--r--modules/processing.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/processing.py b/modules/processing.py
index b2de8f92..0cf4771e 100644
--- a/modules/processing.py
+++ b/modules/processing.py
@@ -789,6 +789,9 @@ class StableDiffusionProcessingTxt2Img(StableDiffusionProcessing):
if self.hr_resize_x == 0 and self.hr_resize_y == 0:
self.extra_generation_params["Hires upscale"] = self.hr_scale
+ self.extra_generation_params["Hires sampler"] = self.hr_sampler
+ self.extra_generation_params["Hires prompt"] = self.hr_prompt
+ self.extra_generation_params["Hires negative prompt"] = self.hr_negative_prompt
self.hr_upscale_to_x = int(self.width * self.hr_scale)
self.hr_upscale_to_y = int(self.height * self.hr_scale)
else: