Update width and height to increment by 8 in stead of 16

exit_image
Charles Fettinger 2023-05-22 23:24:27 -07:00
parent 21b14f510f
commit c44297eea9
1 changed files with 2 additions and 2 deletions

View File

@ -110,14 +110,14 @@ def on_ui_tabs():
minimum=16,
maximum=2048,
value=shared.opts.data.get("infzoom_outsizeW", 512),
step=16,
step=8,
label="Output Width",
)
main_height = gr.Slider(
minimum=16,
maximum=2048,
value=shared.opts.data.get("infzoom_outsizeH", 512),
step=16,
step=8,
label="Output Height",
)
with gr.Row():