Make Locale dropdown searchable (fixes #4933)

This commit is contained in:
James North 2023-07-24 13:52:23 +10:00 committed by Mathieu Comandon
parent 6797f9774b
commit 259c4f4336

View file

@ -495,10 +495,10 @@ system_options = [ # pylint: disable=invalid-name
{
"section": "Game execution",
"option": "locale",
"type": "choice",
"type": "choice_with_search",
"label": _("Locale"),
"choices": (
get_locale_choices()
get_locale_choices
),
"default": "",
"advanced": False,