diff options
author | missionfloyd <missionfloyd@users.noreply.github.com> | 2023-04-25 02:07:24 +0000 |
---|---|---|
committer | missionfloyd <missionfloyd@users.noreply.github.com> | 2023-04-25 02:07:24 +0000 |
commit | 84c5b0801a25bbc8ae10b9151feb852ba48b0a73 (patch) | |
tree | 75b0ba0ab5528e376b4b2cf873fe8eb74b99cd8e | |
parent | 3ebdd2afd3769046289880d44bbe1322a832073f (diff) | |
download | stable-diffusion-webui-gfx803-84c5b0801a25bbc8ae10b9151feb852ba48b0a73.tar.gz stable-diffusion-webui-gfx803-84c5b0801a25bbc8ae10b9151feb852ba48b0a73.tar.bz2 stable-diffusion-webui-gfx803-84c5b0801a25bbc8ae10b9151feb852ba48b0a73.zip |
Update postprocessing_upscale.py
-rw-r--r-- | scripts/postprocessing_upscale.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/postprocessing_upscale.py b/scripts/postprocessing_upscale.py index e60208ac..ef1186ac 100644 --- a/scripts/postprocessing_upscale.py +++ b/scripts/postprocessing_upscale.py @@ -27,7 +27,7 @@ class ScriptPostprocessingUpscale(scripts_postprocessing.ScriptPostprocessing): with FormRow():
with gr.Column(elem_id="upscaling_column_size", scale=4):
upscaling_resize_w = gr.Slider(minimum=64, maximum=2048, step=8, label="Width", value=512, elem_id="extras_upscaling_resize_w")
- upscaling_resize_h = gr.Slider(minimum=64, maximum=2048, step=8, label="Height", value=512, elem_id="extras_upscaling_resize_w")
+ upscaling_resize_h = gr.Slider(minimum=64, maximum=2048, step=8, label="Height", value=512, elem_id="extras_upscaling_resize_h")
with gr.Column(elem_id="upscaling_dimensions_row", scale=1, elem_classes="dimensions-tools"):
upscaling_res_switch_btn = ToolButton(value=switch_values_symbol, elem_id="upscaling_res_switch_btn")
upscaling_crop = gr.Checkbox(label='Crop to fit', value=True, elem_id="extras_upscaling_crop")
|