diff options
author | DepFA <35278260+dfaker@users.noreply.github.com> | 2022-10-19 23:48:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-19 23:48:07 +0000 |
commit | ab353b141df8eee042b0964bcb645015dabf3459 (patch) | |
tree | 07b53f9d04f9c2eed732a6cab039d2441053657f /modules/ui.py | |
parent | fbcce66601994f6ed370db36d9c238840fed6bd2 (diff) | |
download | stable-diffusion-webui-gfx803-ab353b141df8eee042b0964bcb645015dabf3459.tar.gz stable-diffusion-webui-gfx803-ab353b141df8eee042b0964bcb645015dabf3459.tar.bz2 stable-diffusion-webui-gfx803-ab353b141df8eee042b0964bcb645015dabf3459.zip |
link existing txt option
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/ui.py b/modules/ui.py index 322c082b..7f52ac0c 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1234,6 +1234,7 @@ def create_ui(wrap_gradio_gpu_call): process_dst = gr.Textbox(label='Destination directory')
process_width = gr.Slider(minimum=64, maximum=2048, step=64, label="Width", value=512)
process_height = gr.Slider(minimum=64, maximum=2048, step=64, label="Height", value=512)
+ preprocess_txt_action = gr.Dropdown(label='Existing Caption txt Action', choices=['ignore', 'copy', 'prepend', 'append'])
with gr.Row():
process_flip = gr.Checkbox(label='Create flipped copies')
@@ -1326,6 +1327,7 @@ def create_ui(wrap_gradio_gpu_call): process_dst,
process_width,
process_height,
+ preprocess_txt_action,
process_flip,
process_split,
process_caption,
|