Unverified Commit b2151b93 authored by MMaker's avatar MMaker Committed by GitHub

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
parent f49f917c
...@@ -567,7 +567,7 @@ latent_upscale_modes = { ...@@ -567,7 +567,7 @@ latent_upscale_modes = {
"Latent": {"mode": "bilinear", "antialias": False}, "Latent": {"mode": "bilinear", "antialias": False},
"Latent (antialiased)": {"mode": "bilinear", "antialias": True}, "Latent (antialiased)": {"mode": "bilinear", "antialias": True},
"Latent (bicubic)": {"mode": "bicubic", "antialias": False}, "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}, "Latent (nearest)": {"mode": "nearest", "antialias": False},
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment