Port the mission generator settings to auto.

Done now. Not porting the cheat menu because it contains non-settings
elements as well.
This commit is contained in:
Dan Albert
2021-10-21 19:54:58 -07:00
parent a618f00662
commit 626740366b
13 changed files with 214 additions and 416 deletions

View File

@@ -16,11 +16,14 @@ def boolean_option(
default: bool,
invert: bool = False,
detail: Optional[str] = None,
tooltip: Optional[str] = None,
**kwargs: Any,
) -> bool:
return field(
metadata={
SETTING_DESCRIPTION_KEY: BooleanOption(page, section, text, detail, invert)
SETTING_DESCRIPTION_KEY: BooleanOption(
page, section, text, detail, tooltip, invert
)
},
default=default,
**kwargs,