summaryrefslogtreecommitdiffstats
path: root/Client/Functions/Client_SetControlFadeAnimStop.sqf
blob: 6f39abe28dd540e742784e4391fa4e20f80abd2c (plain)
1
2
3
4
5
6
7
8
9
Private ["_control","_duration","_text","_textcontent"];
_control = _this select 0;

with uinamespace do {
	if !(ctrlShown (currentBEDialog displayCtrl _control)) exitWith {};

	(currentBEDialog displayCtrl _control) ctrlSetStructuredText parseText ("");
	(currentBEDialog displayCtrl _control) ctrlShow false;
};