mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
1b332129e6
* Add search bar in loadouts screen * Add onKeyDown support for the loadouts display * Add ctrl+key support to both editbox in the loadouts screen * Fix syntax error
32 lines
712 B
Plaintext
32 lines
712 B
Plaintext
/*
|
|
* Author: Alganthe
|
|
* onUnLoad EH for arsenal loadouts display.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
#include "..\defines.hpp"
|
|
|
|
GVAR(currentLoadoutsTab) = nil;
|
|
|
|
private _arsenalDisplay = findDisplay IDD_ace_arsenal;
|
|
private _mouseBlockCtrl = _arsenalDisplay displayCtrl IDC_mouseBlock;
|
|
|
|
GVAR(cameraPosition) = GVAR(previousCameraPos);
|
|
GVAR(previousCameraPos) = nil;
|
|
GVAR(loadoutsSearchbarFocus) = nil;
|
|
GVAR(loadoutsPanelFocus) = nil;
|
|
|
|
_mouseBlockCtrl ctrlEnable false;
|
|
_mouseBlockCtrl ctrlCommit 0;
|
|
|
|
[_arsenalDisplay] call FUNC(buttonHide);
|
|
|
|
[_arsenalDisplay , _arsenalDisplay displayCtrl GVAR(currentLeftPanel)] call FUNC(fillLeftPanel);
|