diff options
author | unknown <mcgpapu@gmail.com> | 2023-02-04 02:39:42 +0000 |
---|---|---|
committer | unknown <mcgpapu@gmail.com> | 2023-02-04 02:39:42 +0000 |
commit | 5e1f4f7464e560a2468812fc9d5cb38659cff86c (patch) | |
tree | 6b3e6676384fae53f3359aeea9ac51d32a5affd6 /modules/ui.py | |
parent | ade40aa1a0605ba4aa3adc734ffb2b5121729d03 (diff) | |
parent | 226d840e84c5f306350b0681945989b86760e616 (diff) | |
download | stable-diffusion-webui-gfx803-5e1f4f7464e560a2468812fc9d5cb38659cff86c.tar.gz stable-diffusion-webui-gfx803-5e1f4f7464e560a2468812fc9d5cb38659cff86c.tar.bz2 stable-diffusion-webui-gfx803-5e1f4f7464e560a2468812fc9d5cb38659cff86c.zip |
Merge branch 'master' of github.com:AUTOMATIC1111/stable-diffusion-webui into gamepad
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ui.py b/modules/ui.py index f910c582..5e34fb07 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -479,8 +479,8 @@ def create_ui(): width = gr.Slider(minimum=64, maximum=2048, step=8, label="Width", value=512, elem_id="txt2img_width")
height = gr.Slider(minimum=64, maximum=2048, step=8, label="Height", value=512, elem_id="txt2img_height")
+ res_switch_btn = ToolButton(value=switch_values_symbol, elem_id="txt2img_res_switch_btn")
if opts.dimensions_and_batch_together:
- res_switch_btn = ToolButton(value=switch_values_symbol, elem_id="txt2img_res_switch_btn")
with gr.Column(elem_id="txt2img_column_batch"):
batch_count = gr.Slider(minimum=1, step=1, label='Batch count', value=1, elem_id="txt2img_batch_count")
batch_size = gr.Slider(minimum=1, maximum=8, step=1, label='Batch size', value=1, elem_id="txt2img_batch_size")
@@ -757,8 +757,8 @@ def create_ui(): width = gr.Slider(minimum=64, maximum=2048, step=8, label="Width", value=512, elem_id="img2img_width")
height = gr.Slider(minimum=64, maximum=2048, step=8, label="Height", value=512, elem_id="img2img_height")
+ res_switch_btn = ToolButton(value=switch_values_symbol, elem_id="img2img_res_switch_btn")
if opts.dimensions_and_batch_together:
- res_switch_btn = ToolButton(value=switch_values_symbol, elem_id="img2img_res_switch_btn")
with gr.Column(elem_id="img2img_column_batch"):
batch_count = gr.Slider(minimum=1, step=1, label='Batch count', value=1, elem_id="img2img_batch_count")
batch_size = gr.Slider(minimum=1, maximum=8, step=1, label='Batch size', value=1, elem_id="img2img_batch_size")
|