mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
d0fd45e220
Co-authored-by: jonpas <jonpas33@gmail.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com>
24 lines
625 B
Plaintext
24 lines
625 B
Plaintext
if (productVersion select 4 == 'Development') then {
|
|
[
|
|
QGVAR(devWatermark),
|
|
"CHECKBOX",
|
|
LSTRING(devWatermark),
|
|
"ACE " + LLSTRING(Category),
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
};
|
|
|
|
[
|
|
QGVAR(enableSpeedIndicator),
|
|
"CHECKBOX",
|
|
[LSTRING(EnableSpeedIndicator), LSTRING(EnableSpeedIndicator_Description)],
|
|
"ACE " + LLSTRING(Category),
|
|
true,
|
|
true, {
|
|
if (!_this) then {
|
|
private _speedIndicator = uiNamespace getVariable [QGVAR(speedIndicator), controlNull];
|
|
_speedIndicator ctrlSetText "";
|
|
};
|
|
}
|
|
] call CBA_fnc_addSetting;
|