diff options
author | pieresimakp <69743585+pieresimakp@users.noreply.github.com> | 2023-03-25 15:03:22 +0000 |
---|---|---|
committer | pieresimakp <69743585+pieresimakp@users.noreply.github.com> | 2023-03-25 15:03:22 +0000 |
commit | fb72066ef6a2fed799468517932a76a39789cca6 (patch) | |
tree | d8fc485bdbe22d3fe266aab27e47a61d9db40db3 /modules/ui.py | |
parent | e3b9d0e3e8adfb6214a1eb7acf450574f427ff9d (diff) | |
download | stable-diffusion-webui-gfx803-fb72066ef6a2fed799468517932a76a39789cca6.tar.gz stable-diffusion-webui-gfx803-fb72066ef6a2fed799468517932a76a39789cca6.tar.bz2 stable-diffusion-webui-gfx803-fb72066ef6a2fed799468517932a76a39789cca6.zip |
fixed button position
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 9b6e3241..464e4d8c 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -758,8 +758,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")
- detect_image_size_btn = ToolButton(value=detect_image_size_symbol, elem_id="img2img_detect_image_size_btn")
with gr.Column(elem_id="img2img_dimensions_row", scale=1, elem_classes="dimensions-tools"):
+ detect_image_size_btn = ToolButton(value=detect_image_size_symbol, elem_id="img2img_detect_image_size_btn")
res_switch_btn = ToolButton(value=switch_values_symbol, elem_id="img2img_res_switch_btn")
if opts.dimensions_and_batch_together:
|