From c44297eea9eab844027d81d56a47ebe74eda3574 Mon Sep 17 00:00:00 2001 From: Charles Fettinger Date: Mon, 22 May 2023 23:24:27 -0700 Subject: [PATCH] Update width and height to increment by 8 in stead of 16 --- iz_helpers/ui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iz_helpers/ui.py b/iz_helpers/ui.py index e014abe..2a7a32d 100644 --- a/iz_helpers/ui.py +++ b/iz_helpers/ui.py @@ -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():