aboutsummaryrefslogtreecommitdiffstats
path: root/modules/processing.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2023-01-04 16:19:11 +0000
committerAUTOMATIC <16777216c@gmail.com>2023-01-04 16:19:11 +0000
commit097a90b88bb92878cf435c513b4757b5b82ae299 (patch)
tree25e70a05076843dacf8398976f5bf0ee2474b046 /modules/processing.py
parent3f23e6dabe688c70a7461eabae0eaa6b31eed8de (diff)
downloadstable-diffusion-webui-gfx803-097a90b88bb92878cf435c513b4757b5b82ae299.tar.gz
stable-diffusion-webui-gfx803-097a90b88bb92878cf435c513b4757b5b82ae299.tar.bz2
stable-diffusion-webui-gfx803-097a90b88bb92878cf435c513b4757b5b82ae299.zip
add XY plot parameters to grid image and do not add them to individual images
Diffstat (limited to 'modules/processing.py')
-rw-r--r--modules/processing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py
index c7264aff..47712159 100644
--- a/modules/processing.py
+++ b/modules/processing.py
@@ -422,7 +422,7 @@ def fix_seed(p):
p.subseed = get_fixed_seed(p.subseed)
-def create_infotext(p, all_prompts, all_seeds, all_subseeds, comments, iteration=0, position_in_batch=0):
+def create_infotext(p, all_prompts, all_seeds, all_subseeds, comments=None, iteration=0, position_in_batch=0):
index = position_in_batch + iteration * p.batch_size
clip_skip = getattr(p, 'clip_skip', opts.CLIP_stop_at_last_layers)