diff options
author | NO_ob <15161159+NO-ob@users.noreply.github.com> | 2022-10-15 10:43:30 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-15 13:13:13 +0000 |
commit | eef3bc649069d6caaef1274f132de28e528bfa7d (patch) | |
tree | 128104039154cda42a356346258095521280fb3d /modules | |
parent | 73901c3f011a2510d65de1c99b4958cd9b559264 (diff) | |
download | stable-diffusion-webui-gfx803-eef3bc649069d6caaef1274f132de28e528bfa7d.tar.gz stable-diffusion-webui-gfx803-eef3bc649069d6caaef1274f132de28e528bfa7d.tar.bz2 stable-diffusion-webui-gfx803-eef3bc649069d6caaef1274f132de28e528bfa7d.zip |
typo
Diffstat (limited to 'modules')
-rw-r--r-- | modules/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared.py b/modules/shared.py index b4141e67..fa30bbb0 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -218,7 +218,7 @@ options_templates.update(options_section(('upscaling', "Upscaling"), { "SWIN_tile_overlap": OptionInfo(8, "Tile overlap, in pixels for SwinIR. Low values = visible seam.", gr.Slider, {"minimum": 0, "maximum": 48, "step": 1}),
"ldsr_steps": OptionInfo(100, "LDSR processing steps. Lower = faster", gr.Slider, {"minimum": 1, "maximum": 200, "step": 1}),
"upscaler_for_img2img": OptionInfo(None, "Upscaler for img2img", gr.Dropdown, lambda: {"choices": [x.name for x in sd_upscalers]}),
- "use_scale_latent_for_hires_fix": OptionInfo(False, "Upscale latent space iamge when doing hires. fix"),
+ "use_scale_latent_for_hires_fix": OptionInfo(False, "Upscale latent space image when doing hires. fix"),
}))
options_templates.update(options_section(('face-restoration', "Face restoration"), {
|