Skip to content

Commit

Permalink
#1871 - Don't do ctrlText(set) on RscControlsGroup
Browse files Browse the repository at this point in the history
Throws `control[ACE_ScriptedDisplayControlsGroup]: Unexpected control
type [15]`
  • Loading branch information
PabstMirror committed Jul 23, 2015
1 parent 216ea00 commit aa3b9e7
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions addons/vector/functions/fnc_illuminate.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -7,35 +7,36 @@ disableSerialization;
_dlgVector = GETUVAR(ACE_dlgVector,displayNull);

if (_this select 0) then {

{
private ["_string", "_index"];
if (ctrlIDC _x != 170) then {
private ["_string", "_index"];

_string = ctrlText _x;
_index = _string find ".paa";
_string = ctrlText _x;
_index = _string find ".paa";

if (_index != -1 && {_string find "_illum.paa" == -1}) then {
_string = toArray _string;
_string resize _index;
if (_index != -1 && {_string find "_illum.paa" == -1}) then {
_string = toArray _string;
_string resize _index;

_x ctrlSetText format ["%1_illum.paa", toString _string];
_x ctrlSetText format ["%1_illum.paa", toString _string];
};
};
} forEach allControls _dlgVector;

} else {

{
private ["_string", "_index"];
if (ctrlIDC _x != 170) then {
private ["_string", "_index"];

_string = ctrlText _x;
_index = _string find "_illum.paa";
_string = ctrlText _x;
_index = _string find "_illum.paa";

if (_index != -1) then {
_string = toArray _string;
_string resize _index;
if (_index != -1) then {
_string = toArray _string;
_string resize _index;

_x ctrlSetText format ["%1.paa", toString _string];
};

_x ctrlSetText format ["%1.paa", toString _string];
};
} forEach allControls _dlgVector;

};

0 comments on commit aa3b9e7

Please sign in to comment.