ACE3/addons/intelitems/functions/fnc_onMouseButtonUp.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

25 lines
490 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: mharis001
* Handles the mouse button up event for an intel control.
*
* Arguments:
* 0: Header control <CONTROL>
* 1: Button <NUMBER>
*
* Return Value:
* None
*
* Example:
* [CONTROL, 0] call ace_intelitems_fnc_onMouseButtonUp
*
* Public: No
*/
params ["_ctrlHeader", "_button"];
if (_button != 0) exitWith {};
private _controlsGroup = ctrlParentControlsGroup _ctrlHeader;
_controlsGroup setVariable [QGVAR(clickPos), nil];