From 873fbd77d012dec32d56cc96e102d108d32cfacd Mon Sep 17 00:00:00 2001 From: tuntematonjr Date: Tue, 24 Sep 2024 16:04:36 +0300 Subject: [PATCH] Add missing setting type to header --- addons/settings/fnc_addSetting.sqf | 2 +- addons/settings/fnc_init.sqf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/settings/fnc_addSetting.sqf b/addons/settings/fnc_addSetting.sqf index b2151fdb8..166fa4cca 100644 --- a/addons/settings/fnc_addSetting.sqf +++ b/addons/settings/fnc_addSetting.sqf @@ -7,7 +7,7 @@ Description: Parameters: _setting - Unique setting name. Matches resulting variable name - _settingType - Type of setting. Can be "CHECKBOX", "EDITBOX", "LIST", "SLIDER" or "COLOR" + _settingType - Type of setting. Can be "CHECKBOX", "EDITBOX", "LIST", "SLIDER", "COLOR" or "TIME" _title - Display name or display name + tooltip (optional, default: same as setting name) _category - Category for the settings menu + optional sub-category _valueInfo - Extra properties of the setting depending of _settingType. See examples below diff --git a/addons/settings/fnc_init.sqf b/addons/settings/fnc_init.sqf index b3972e0bf..38fcd7ce9 100644 --- a/addons/settings/fnc_init.sqf +++ b/addons/settings/fnc_init.sqf @@ -7,7 +7,7 @@ Description: Parameters: _setting - Unique setting name. Matches resulting variable name - _settingType - Type of setting. Can be "CHECKBOX", "EDITBOX", "LIST", "SLIDER" or "COLOR" + _settingType - Type of setting. Can be "CHECKBOX", "EDITBOX", "LIST", "SLIDER", "COLOR" or "TIME" _title - Display name or display name + tooltip (optional, default: same as setting name) _category - Category for the settings menu + optional sub-category _valueInfo - Extra properties of the setting depending of _settingType. See examples below