mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Array return gets formatted as multi-line string
This commit is contained in:
parent
f4272f0e36
commit
56b150dbfb
@ -141,8 +141,12 @@ private _fnc_handleStats = {
|
||||
if (_showText) then {
|
||||
_textStatementResult = [_configEntry, _itemCfg] call _textStatement;
|
||||
|
||||
if !(_textStatementResult isEqualtype "") then {
|
||||
_textStatementResult = str _textStatementResult;
|
||||
if (_textStatementResult isEqualType []) then {
|
||||
_textStatementResult = _textStatementResult joinString endl;
|
||||
} else {
|
||||
if !(_textStatementResult isEqualtype "") then {
|
||||
_textStatementResult = str _textStatementResult;
|
||||
};
|
||||
};
|
||||
|
||||
_statsTextCtrl ctrlSetText _textStatementResult;
|
||||
|
@ -331,7 +331,7 @@ class GVAR(display) {
|
||||
w = QUOTE(45 * GRID_W);
|
||||
h = QUOTE(4 * GRID_H);
|
||||
};
|
||||
class statsText1: RscText {
|
||||
class statsText1: RscTextMulti {
|
||||
idc = IDC_statsText1;
|
||||
shadow = 0;
|
||||
fade = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user