aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/xy_grid.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-11-04 05:38:11 +0000
committerAUTOMATIC <16777216c@gmail.com>2022-11-04 05:38:19 +0000
commit4dd898b8c15e342f817d3fb1c8dc9f2d5d111022 (patch)
tree9ac38cfb3fab5edf3d61bae2a8825b5755173e5d /scripts/xy_grid.py
parent59a21a67d220d6943be2fc3c5632c02c3ffc99d1 (diff)
downloadstable-diffusion-webui-gfx803-4dd898b8c15e342f817d3fb1c8dc9f2d5d111022.tar.gz
stable-diffusion-webui-gfx803-4dd898b8c15e342f817d3fb1c8dc9f2d5d111022.tar.bz2
stable-diffusion-webui-gfx803-4dd898b8c15e342f817d3fb1c8dc9f2d5d111022.zip
do not mess with components' visibility for scripts; instead create group components and show/hide those; this will break scripts that create invisible components and rely on UI but the earlier i make this change the better
Diffstat (limited to 'scripts/xy_grid.py')
-rw-r--r--scripts/xy_grid.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/xy_grid.py b/scripts/xy_grid.py
index f5255786..417ed0d4 100644
--- a/scripts/xy_grid.py
+++ b/scripts/xy_grid.py
@@ -263,12 +263,12 @@ class Script(scripts.Script):
current_axis_options = [x for x in axis_options if type(x) == AxisOption or type(x) == AxisOptionImg2Img and is_img2img]
with gr.Row():
- x_type = gr.Dropdown(label="X type", choices=[x.label for x in current_axis_options], value=current_axis_options[1].label, visible=False, type="index", elem_id="x_type")
- x_values = gr.Textbox(label="X values", visible=False, lines=1)
+ x_type = gr.Dropdown(label="X type", choices=[x.label for x in current_axis_options], value=current_axis_options[1].label, type="index", elem_id="x_type")
+ x_values = gr.Textbox(label="X values", lines=1)
with gr.Row():
- y_type = gr.Dropdown(label="Y type", choices=[x.label for x in current_axis_options], value=current_axis_options[0].label, visible=False, type="index", elem_id="y_type")
- y_values = gr.Textbox(label="Y values", visible=False, lines=1)
+ y_type = gr.Dropdown(label="Y type", choices=[x.label for x in current_axis_options], value=current_axis_options[0].label, type="index", elem_id="y_type")
+ y_values = gr.Textbox(label="Y values", lines=1)
draw_legend = gr.Checkbox(label='Draw legend', value=True)
include_lone_images = gr.Checkbox(label='Include Separate Images', value=False)