diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-03 08:48:19 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-03 08:48:19 +0000 |
commit | 43a74fa595003321200a40bd2431e56c245e75ed (patch) | |
tree | f373dc491022619770dfb22b6bdae329f3b56c1d /modules/ui.py | |
parent | d15c125db7f9c153aaf613ad5c3522d0142a36b2 (diff) | |
download | stable-diffusion-webui-gfx803-43a74fa595003321200a40bd2431e56c245e75ed.tar.gz stable-diffusion-webui-gfx803-43a74fa595003321200a40bd2431e56c245e75ed.tar.bz2 stable-diffusion-webui-gfx803-43a74fa595003321200a40bd2431e56c245e75ed.zip |
batch processing for img2img with an empty output directory, by request
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py index 16432151..55f7aa95 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -658,7 +658,7 @@ def create_ui(wrap_gradio_gpu_call): with gr.TabItem('Batch img2img', id='batch'):
hidden = '<br>Disabled when launched with --hide-ui-dir-config.' if shared.cmd_opts.hide_ui_dir_config else ''
- gr.HTML(f"<p class=\"text-gray-500\">Process images in a directory on the same machine where the server is running.{hidden}</p>")
+ gr.HTML(f"<p class=\"text-gray-500\">Process images in a directory on the same machine where the server is running.<br>Use an empty output directory to save pictures normally instead of writing to the output directory.{hidden}</p>")
img2img_batch_input_dir = gr.Textbox(label="Input directory", **shared.hide_dirs)
img2img_batch_output_dir = gr.Textbox(label="Output directory", **shared.hide_dirs)
|