Unverified Commit b15bc73c authored by Brad Smith's avatar Brad Smith
Browse files

sort upscalers by name

parent 0cc0ee1b
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ from urllib.parse import urlparse

from basicsr.utils.download_util import load_file_from_url
from modules import shared
from modules.upscaler import Upscaler
from modules.upscaler import Upscaler, UpscalerNone
from modules.paths import script_path, models_path


@@ -169,4 +169,8 @@ def load_upscalers():
        scaler = cls(commandline_options.get(cmd_name, None))
        datas += scaler.scalers

    shared.sd_upscalers = datas
    shared.sd_upscalers = sorted(
        datas,
        # Special case for UpscalerNone keeps it at the beginning of the list.
        key=lambda x: x.name if not isinstance(x.scaler, UpscalerNone) else ""
    )