mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
db6f30fcc9
Does not include the Icon pack. When using the UI it may throw up some missing .paa file errors. Replacements will need to be found if we want to use those.
20 lines
401 B
Plaintext
20 lines
401 B
Plaintext
/**
|
|
* fn_gui_refreshLastSubMenu.sqf
|
|
* @Descr: N/A
|
|
* @Author: Glowbal
|
|
*
|
|
* @Arguments: []
|
|
* @Return:
|
|
* @PublicAPI: false
|
|
*/
|
|
|
|
private ["_lastMenu"];
|
|
_lastMenu = CMS_GUI_LATEST_SUBMENU;
|
|
|
|
if ((_lastMenu select 1) > 200 && (_lastMenu select 1) < 300) then {
|
|
call cse_fnc_gui_hideSubSubMenuButtons;
|
|
} else {
|
|
call cse_fnc_gui_hideSubMenuButtons;
|
|
};
|
|
_lastMenu call cse_fnc_gui_displaySubMenuButtons;
|