mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-22 17:48:01 +02:00
Lost changes
This commit is contained in:
parent
e6c4a95ccd
commit
8e9d7ed4c4
56 changed files with 1579 additions and 794 deletions
|
@ -276,7 +276,15 @@ namespace IDE.ui
|
|||
SetLabel(item, codeStr);
|
||||
|
||||
let descItem = item.GetSubItem(1);
|
||||
String errStr = scope String(32)..Append(error.mError);
|
||||
String errStr = scope String(32);
|
||||
int maxLen = 4*1024;
|
||||
if (error.mError.Length > maxLen)
|
||||
{
|
||||
errStr.Append(error.mError.Substring(0, maxLen));
|
||||
errStr.Append("...");
|
||||
}
|
||||
else
|
||||
errStr.Append(error.mError);
|
||||
errStr.Replace('\n', ' ');
|
||||
|
||||
SetLabel(descItem, errStr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue