diff options
author | MMaker <mmaker@mmaker.moe> | 2023-01-04 10:36:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 10:36:18 +0000 |
commit | b2151b934fe0a3613570c6abd7615d3788fd1c8f (patch) | |
tree | 67b15e4f499c071a99b8b7cf2dd4308a87268ee5 | |
parent | f49f917cddf1cdc74bc267be873a65417be066d1 (diff) | |
download | stable-diffusion-webui-gfx803-b2151b934fe0a3613570c6abd7615d3788fd1c8f.tar.gz stable-diffusion-webui-gfx803-b2151b934fe0a3613570c6abd7615d3788fd1c8f.tar.bz2 stable-diffusion-webui-gfx803-b2151b934fe0a3613570c6abd7615d3788fd1c8f.zip |
Rename bicubic antialiased option
Comma was causing the the value in PNG info to be quoted, which causes the upscaler dropdown option to be blank when sending to UI
-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 a10f69a9..c1b20081 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -567,7 +567,7 @@ latent_upscale_modes = { "Latent": {"mode": "bilinear", "antialias": False},
"Latent (antialiased)": {"mode": "bilinear", "antialias": True},
"Latent (bicubic)": {"mode": "bicubic", "antialias": False},
- "Latent (bicubic, antialiased)": {"mode": "bicubic", "antialias": True},
+ "Latent (bicubic antialiased)": {"mode": "bicubic", "antialias": True},
"Latent (nearest)": {"mode": "nearest", "antialias": False},
}
|