mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
31 lines
661 B
Plaintext
31 lines
661 B
Plaintext
/**
|
|
* fnc_resetSettings.sqf
|
|
* @Descr:
|
|
* @Author: Glowbal
|
|
*
|
|
* @Arguments: []
|
|
* @Return:
|
|
* @PublicAPI: true
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_name", "_default", "_lastSelected"];
|
|
|
|
{
|
|
_name = _x select 0;
|
|
_default = _x select 5;
|
|
[MENU_TAB_OPTIONS, _name, _default] call FUNC(updateSetting);
|
|
} forEach GVAR(clientSideOptions);
|
|
|
|
{
|
|
_name = _x select 0;
|
|
_default = _x select 4;
|
|
[MENU_TAB_COLORS, _name, _default] call FUNC(updateSetting);
|
|
} forEach GVAR(clientSideColors);
|
|
|
|
_lastSelected = lbCurSel 200;
|
|
[GVAR(optionMenu_openTab)] call FUNC(onListBoxShowSelectionChanged);
|
|
if (_lastSelected != -1) then {
|
|
lbSetCurSel [200, _lastSelected];
|
|
};
|