aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-09-16 07:21:59 +0000
committerAUTOMATIC <16777216c@gmail.com>2022-09-16 07:21:59 +0000
commitd8b427f8aa787e2ee21a63c1bea5e0eabaaf4979 (patch)
treec53d4937e0be139f6ce70ef49f1c32701691be2e
parentb8cf2ea8ea50da7084061895e5af7b22c37633c0 (diff)
downloadstable-diffusion-webui-gfx803-d8b427f8aa787e2ee21a63c1bea5e0eabaaf4979.tar.gz
stable-diffusion-webui-gfx803-d8b427f8aa787e2ee21a63c1bea5e0eabaaf4979.tar.bz2
stable-diffusion-webui-gfx803-d8b427f8aa787e2ee21a63c1bea5e0eabaaf4979.zip
remove the warning at startup related to previous PR with batch processing
-rw-r--r--modules/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py
index b6d5dcd8..738ac945 100644
--- a/modules/ui.py
+++ b/modules/ui.py
@@ -649,7 +649,7 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo):
image = gr.Image(label="Source", source="upload", interactive=True, type="pil")
with gr.TabItem('Batch Process'):
- image_batch = gr.File(label="Batch Process", file_count="multiple", source="upload", interactive=True, type="file")
+ image_batch = gr.File(label="Batch Process", file_count="multiple", interactive=True, type="file")
upscaling_resize = gr.Slider(minimum=1.0, maximum=4.0, step=0.05, label="Resize", value=2)