diff options
author | EllangoK <karun.ellango7@gmail.com> | 2023-01-21 21:21:33 +0000 |
---|---|---|
committer | EllangoK <karun.ellango7@gmail.com> | 2023-01-21 21:21:33 +0000 |
commit | bf457b30fbfedb4b6eb2a198cbaa9f2ba071d31f (patch) | |
tree | 58c5a2a3f01e5f4d247f2b5d830e0753a93e6102 /modules/ui.py | |
parent | f2eae6127d16a80d1516d3f6245b648eeca26330 (diff) | |
download | stable-diffusion-webui-gfx803-bf457b30fbfedb4b6eb2a198cbaa9f2ba071d31f.tar.gz stable-diffusion-webui-gfx803-bf457b30fbfedb4b6eb2a198cbaa9f2ba071d31f.tar.bz2 stable-diffusion-webui-gfx803-bf457b30fbfedb4b6eb2a198cbaa9f2ba071d31f.zip |
compact checkbox and fix copy image btn overflow
also fixes type for #tab_extensions in style.css
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 af6dfb21..12fc9e6a 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -919,7 +919,7 @@ def create_ui(): seed, reuse_seed, subseed, reuse_subseed, subseed_strength, seed_resize_from_h, seed_resize_from_w, seed_checkbox = create_seed_inputs('img2img')
elif category == "checkboxes":
- with FormRow(elem_id="img2img_checkboxes"):
+ with FormRow(elem_id="img2img_checkboxes", variant="compact"):
restore_faces = gr.Checkbox(label='Restore faces', value=False, visible=len(shared.face_restorers) > 1, elem_id="img2img_restore_faces")
tiling = gr.Checkbox(label='Tiling', value=False, elem_id="img2img_tiling")
|