mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
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:
@@ -18,12 +18,13 @@ def bounded_int_option(
|
||||
min: int,
|
||||
max: int,
|
||||
detail: Optional[str] = None,
|
||||
tooltip: Optional[str] = None,
|
||||
**kwargs: Any,
|
||||
) -> int:
|
||||
return field(
|
||||
metadata={
|
||||
SETTING_DESCRIPTION_KEY: BoundedIntOption(
|
||||
page, section, text, detail, min, max
|
||||
page, section, text, detail, tooltip, min, max
|
||||
)
|
||||
},
|
||||
default=default,
|
||||
|
||||
Reference in New Issue
Block a user