2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-12-11 12:14:58 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
|
|
|
* [CONTROL, 5] call ACE_inventory_fnc_onLBSelChanged
|
|
|
|
*
|
2015-12-11 12:14:58 +00:00
|
|
|
* Public: No
|
|
|
|
*/
|
2015-12-11 00:02:15 +00:00
|
|
|
|
|
|
|
disableSerialization;
|
|
|
|
params ["_filter", "_index"];
|
|
|
|
|
|
|
|
GVAR(selectedFilterIndex) = _index;
|
|
|
|
|
|
|
|
[{
|
|
|
|
disableSerialization;
|
|
|
|
params ["_display"];
|
|
|
|
|
|
|
|
[_display] call FUNC(forceItemListUpdate);
|
2016-05-22 13:27:24 +00:00
|
|
|
}, [ctrlParent _filter]] call CBA_fnc_execNextFrame;
|