diff options
author | missionfloyd <missionfloyd@users.noreply.github.com> | 2023-09-01 23:01:08 +0000 |
---|---|---|
committer | missionfloyd <missionfloyd@users.noreply.github.com> | 2023-09-01 23:01:08 +0000 |
commit | 3e67017dfb767f18f599f13e62fff9355ea14160 (patch) | |
tree | 1aeba70ff5648959f8473bf7409383a6db0acea2 /scripts | |
parent | 5ef669de080814067961f28357256e8fe27544f4 (diff) | |
download | stable-diffusion-webui-gfx803-3e67017dfb767f18f599f13e62fff9355ea14160.tar.gz stable-diffusion-webui-gfx803-3e67017dfb767f18f599f13e62fff9355ea14160.tar.bz2 stable-diffusion-webui-gfx803-3e67017dfb767f18f599f13e62fff9355ea14160.zip |
Restore missing tooltips
Diffstat (limited to 'scripts')
-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 edb70ac0..eb42a29e 100644 --- a/scripts/postprocessing_upscale.py +++ b/scripts/postprocessing_upscale.py @@ -29,7 +29,7 @@ class ScriptPostprocessingUpscale(scripts_postprocessing.ScriptPostprocessing): 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_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_res_switch_btn = ToolButton(value=switch_values_symbol, elem_id="upscaling_res_switch_btn", tooltip="Switch width/height")
upscaling_crop = gr.Checkbox(label='Crop to fit', value=True, elem_id="extras_upscaling_crop")
with FormRow():
|