allow custom detailer resolution

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-09-10 16:32:50 -04:00
parent 65287eb402
commit 4093b6c040
13 changed files with 49 additions and 33 deletions
+1
View File
@@ -143,6 +143,7 @@ def create_infotext(p: StableDiffusionProcessing, all_prompts=None, all_seeds=No
args["Detailer"] = ', '.join(shared.opts.detailer_models) if len(shared.opts.detailer_args) == 0 else shared.opts.detailer_args
args["Detailer steps"] = p.detailer_steps
args["Detailer strength"] = p.detailer_strength
args["Detailer resolution"] = p.detailer_resolution if p.detailer_resolution != 1024 else None
args["Detailer prompt"] = p.detailer_prompt if len(p.detailer_prompt) > 0 else None
args["Detailer negative"] = p.detailer_negative if len(p.detailer_negative) > 0 else None
if 'color' in p.ops: