aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-01-23 15:22:06 +0300
committerGitHub <noreply@github.com>2023-01-23 15:22:06 +0300
commit663353098e84540763a7ed42196118fe36a65f04 (patch)
treea75d6d3951bab633643e31028c1bf6c062904d0d /modules
parent74608300d1b07b0385359df68fee1bd086005b2d (diff)
parent5560150fdaf5d974a122f0b226d6abe24dea12c0 (diff)
Merge pull request #7031 from EllangoK/master
Fixes various button overflowing UI and compact checkbox
Diffstat (limited to 'modules')
-rw-r--r--modules/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py
index c56323f1..94d4a80a 100644
--- a/modules/ui.py
+++ b/modules/ui.py
@@ -742,7 +742,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")