mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
* Everything * Fixed missing ; * Fix missing ; and double private * Fixed cannot isNull on number * Turn _temparture back to isNil * Fix error from merge
26 lines
497 B
Plaintext
26 lines
497 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Changes which category is selected
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [] call ACE_optionsmenu_fnc_onCategorySelectChanged
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
disableSerialization;
|
|
private _settingsMenu = uiNamespace getVariable 'ACE_serverSettingsMenu';
|
|
|
|
private _ctrlComboBox = (_settingsMenu displayCtrl 14);
|
|
GVAR(currentCategorySelection) = lbCurSel _ctrlComboBox;
|
|
|
|
[true] call FUNC(serverSettingsMenuUpdateList);
|