ACE3/addons/inventory/functions/fnc_onLBSelChanged.sqf

28 lines
524 B
Plaintext
Raw Normal View History

#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
*
* 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;
2015-12-11 00:02:15 +00:00
params ["_filter", "_index"];
GVAR(selectedFilterIndex) = _index;
// Force update
[LINKFUNC(forceItemListUpdate), ctrlParent _filter] call CBA_fnc_execNextFrame;