diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-30 09:56:36 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-30 09:56:36 +0000 |
commit | b60cd0809f6dc99ff0751593f562b64609b3117c (patch) | |
tree | a49785c8abeb85055253aba8d8747acbb3ef2bca | |
parent | 9a54077d4d7ade6031cad33a0dd46f4d9acfa548 (diff) | |
download | stable-diffusion-webui-gfx803-b60cd0809f6dc99ff0751593f562b64609b3117c.tar.gz stable-diffusion-webui-gfx803-b60cd0809f6dc99ff0751593f562b64609b3117c.tar.bz2 stable-diffusion-webui-gfx803-b60cd0809f6dc99ff0751593f562b64609b3117c.zip |
return the dropdown that mysteriously disappeared
-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 03a1a4d3..8428c7a3 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -193,7 +193,7 @@ options_templates.update(options_section(('system', "System"), { }))
options_templates.update(options_section(('sd', "Stable Diffusion"), {
- "sd_model_checkpoint": OptionInfo(None, "Stable Diffusion checkpoint", gr.Radio, lambda: {"choices": modules.sd_models.checkpoint_tiles()}),
+ "sd_model_checkpoint": OptionInfo(None, "Stable Diffusion checkpoint", gr.Dropdown, lambda: {"choices": modules.sd_models.checkpoint_tiles()}),
"img2img_color_correction": OptionInfo(False, "Apply color correction to img2img results to match original colors."),
"save_images_before_color_correction": OptionInfo(False, "Save a copy of image before applying color correction to img2img results"),
"img2img_fix_steps": OptionInfo(False, "With img2img, do exactly the amount of steps the slider specifies (normally you'd do less with less denoising)."),
|