mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
14 lines
353 B
Plaintext
14 lines
353 B
Plaintext
/**
|
|
* fnc_onSettingsMenuOpen.sqf
|
|
* @Descr: called when the settings or configuration menu has opened. Do not use anywhere else.
|
|
* @Author: Glowbal
|
|
*
|
|
* @Arguments: []
|
|
* @Return:
|
|
* @PublicAPI: false
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
//Delay a frame
|
|
[{ [MENU_TAB_OPTIONS] call FUNC(onListBoxShowSelectionChanged) }, []] call EFUNC(common,execNextFrame);
|