diff options
author | TinkTheBoush <TinkTheBoush@github.com> | 2022-11-04 10:48:28 +0000 |
---|---|---|
committer | TinkTheBoush <TinkTheBoush@github.com> | 2022-11-04 10:48:28 +0000 |
commit | 45b65e87e0ef64b3e457f7d20c62d591cdcd0e7b (patch) | |
tree | f29055a23b3d4cffe7838609e5fef3ef2b375264 /modules/ui.py | |
parent | 821e2b883dbb42a187bc37379175cd55b7cd7e81 (diff) | |
download | stable-diffusion-webui-gfx803-45b65e87e0ef64b3e457f7d20c62d591cdcd0e7b.tar.gz stable-diffusion-webui-gfx803-45b65e87e0ef64b3e457f7d20c62d591cdcd0e7b.tar.bz2 stable-diffusion-webui-gfx803-45b65e87e0ef64b3e457f7d20c62d591cdcd0e7b.zip |
remove ui option
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/ui.py b/modules/ui.py index 6f3836c6..45cd8c3f 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1269,7 +1269,6 @@ def create_ui(wrap_gradio_gpu_call): save_embedding_every = gr.Number(label='Save a copy of embedding to log directory every N steps, 0 to disable', value=500, precision=0)
save_image_with_stored_embedding = gr.Checkbox(label='Save images with embedding in PNG chunks', value=True)
preview_from_txt2img = gr.Checkbox(label='Read parameters (prompt, etc...) from txt2img tab when making previews', value=False)
- shuffle_tags = gr.Checkbox(label='Shuffleing tags by "," when create texts', value=True)
with gr.Row():
interrupt_training = gr.Button(value="Interrupt")
@@ -1364,7 +1363,6 @@ def create_ui(wrap_gradio_gpu_call): template_file,
save_image_with_stored_embedding,
preview_from_txt2img,
- shuffle_tags,
*txt2img_preview_params,
],
outputs=[
@@ -1389,7 +1387,6 @@ def create_ui(wrap_gradio_gpu_call): save_embedding_every,
template_file,
preview_from_txt2img,
- shuffle_tags,
*txt2img_preview_params,
],
outputs=[
|