mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
31 lines
582 B
Plaintext
31 lines
582 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: commy2
|
|
* Executed when the filter list box is changed.
|
|
* Sets new filter list index.
|
|
*
|
|
* Arguments:
|
|
* 0: Filter list box <CONTROL>
|
|
* 1: Filter list index <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [CONTROL, 5] call ACE_inventory_fnc_onLBSelChanged
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
disableSerialization;
|
|
params ["_filter", "_index"];
|
|
|
|
GVAR(selectedFilterIndex) = _index;
|
|
|
|
[{
|
|
disableSerialization;
|
|
params ["_display"];
|
|
|
|
[_display] call FUNC(forceItemListUpdate);
|
|
}, [ctrlParent _filter]] call CBA_fnc_execNextFrame;
|