Merge pull request #1411 from hogscraper/test_branch

Additional update to UI
This commit is contained in:
vbawol
2014-07-11 14:28:14 -05:00
2 changed files with 59 additions and 24 deletions

View File

@@ -285,15 +285,15 @@ if (!isDedicated) then {
};
};
player_guiControlFlash = {
private["_control"];
_control = _this;
if (ctrlShown _control) then {
_control ctrlShow false;
} else {
_control ctrlShow true;
};
};
player_guiControlFlash = {
private["_control"];
_control = _this;
if (ctrlShown (_control select 0)) then {
{_x ctrlShow false} foreach _control;
} else {
{_x ctrlShow true} foreach _control;
};
};
gearDialog_create = {
private ["_i","_dialog"];