Unverified Commit cb27571e authored by Yeuoly's avatar Yeuoly Committed by GitHub

fix: missing prompt (#2294)

parent 0518da58
...@@ -188,6 +188,8 @@ class StableDiffusionTool(BuiltinTool): ...@@ -188,6 +188,8 @@ class StableDiffusionTool(BuiltinTool):
if lora: if lora:
draw_options['prompt'] = f'{lora},{prompt}' draw_options['prompt'] = f'{lora},{prompt}'
else:
draw_options['prompt'] = prompt
draw_options['width'] = width draw_options['width'] = width
draw_options['height'] = height draw_options['height'] = height
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment