Update width and height to increment by 8 in stead of 16
parent
21b14f510f
commit
c44297eea9
|
|
@ -110,14 +110,14 @@ def on_ui_tabs():
|
||||||
minimum=16,
|
minimum=16,
|
||||||
maximum=2048,
|
maximum=2048,
|
||||||
value=shared.opts.data.get("infzoom_outsizeW", 512),
|
value=shared.opts.data.get("infzoom_outsizeW", 512),
|
||||||
step=16,
|
step=8,
|
||||||
label="Output Width",
|
label="Output Width",
|
||||||
)
|
)
|
||||||
main_height = gr.Slider(
|
main_height = gr.Slider(
|
||||||
minimum=16,
|
minimum=16,
|
||||||
maximum=2048,
|
maximum=2048,
|
||||||
value=shared.opts.data.get("infzoom_outsizeH", 512),
|
value=shared.opts.data.get("infzoom_outsizeH", 512),
|
||||||
step=16,
|
step=8,
|
||||||
label="Output Height",
|
label="Output Height",
|
||||||
)
|
)
|
||||||
with gr.Row():
|
with gr.Row():
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue