fix: missing prompt (#2294)

This commit is contained in:
Yeuoly 2024-01-30 17:00:50 +08:00 committed by GitHub
commit cb27571e9f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -188,6 +188,8 @@ class StableDiffusionTool(BuiltinTool):
if lora:
draw_options['prompt'] = f'{lora},{prompt}'
else:
draw_options['prompt'] = prompt
draw_options['width'] = width
draw_options['height'] = height