aboutsummaryrefslogtreecommitdiff
path: root/scripts
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 /scripts
parent74608300d1b07b0385359df68fee1bd086005b2d (diff)
parent5560150fdaf5d974a122f0b226d6abe24dea12c0 (diff)
Merge pull request #7031 from EllangoK/master
Fixes various button overflowing UI and compact checkbox
Diffstat (limited to 'scripts')
-rw-r--r--scripts/xy_grid.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/xy_grid.py b/scripts/xy_grid.py
index 98254c64..bea0cbfd 100644
--- a/scripts/xy_grid.py
+++ b/scripts/xy_grid.py
@@ -307,7 +307,7 @@ class Script(scripts.Script):
y_values = gr.Textbox(label="Y values", lines=1, elem_id=self.elem_id("y_values"))
fill_y_button = ToolButton(value=fill_values_symbol, elem_id="xy_grid_fill_y_tool_button", visible=False)
- with gr.Row(variant="compact"):
+ with gr.Row(variant="compact", elem_id="axis_options"):
draw_legend = gr.Checkbox(label='Draw legend', value=True, elem_id=self.elem_id("draw_legend"))
include_lone_images = gr.Checkbox(label='Include Separate Images', value=False, elem_id=self.elem_id("include_lone_images"))
no_fixed_seeds = gr.Checkbox(label='Keep -1 for seeds', value=False, elem_id=self.elem_id("no_fixed_seeds"))