diff options
author | DepFA <35278260+dfaker@users.noreply.github.com> | 2022-10-20 00:53:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-20 00:53:29 +0100 |
commit | 55d8c6cce6d3aef848b9f194adad2ce53064d8b7 (patch) | |
tree | f512e6468b4018a477a4521c4d2e69d92fef7ee2 /modules/ui.py | |
parent | 9b65c4ecf4f8eb6187ee721918adebe68e9bc631 (diff) |
default to ignore existing captions
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 7f52ac0c..bd5f1b05 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1234,7 +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'])
+ preprocess_txt_action = gr.Dropdown(label='Existing Caption txt Action', value="ignore", choices=["ignore", "copy", "prepend", "append"])
with gr.Row():
process_flip = gr.Checkbox(label='Create flipped copies')
|