ACE3/addons/inventory/functions/fnc_onLBSelChanged.sqf
johnb432 7f998c3234
Inventory - Improve multiple aspects (#9706)
Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
2024-01-06 18:26:46 -03:00

28 lines
524 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;
// Force update
[LINKFUNC(forceItemListUpdate), ctrlParent _filter] call CBA_fnc_execNextFrame;