aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMMaker <mmaker@mmaker.moe>2023-01-04 05:36:18 -0500
committerGitHub <noreply@github.com>2023-01-04 05:36:18 -0500
commitb2151b934fe0a3613570c6abd7615d3788fd1c8f (patch)
tree67b15e4f499c071a99b8b7cf2dd4308a87268ee5
parentf49f917cddf1cdc74bc267be873a65417be066d1 (diff)
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.py2
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},
}