alternative solution for infotext issue

This commit is contained in:
AUTOMATIC1111
2023-07-26 06:36:06 +03:00
parent d0bf509fa1
commit ae36e0899f
2 changed files with 32 additions and 36 deletions

View File

@@ -17,8 +17,12 @@ class PostprocessImageArgs:
class PostprocessBatchListArgs:
def __init__(self, images):
def __init__(self, images, prompts, negative_prompts, seeds, subseeds):
self.images = images
self.prompts = prompts
self.negative_prompts = negative_prompts
self.seeds = seeds
self.subseeds = subseeds
class Script: