mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-13 22:04:09 +02:00
Fixed warning/error colors
This commit is contained in:
parent
a139b6f0ad
commit
b6f2762f19
1 changed files with 2 additions and 2 deletions
|
@ -240,11 +240,11 @@ namespace IDE.ui
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
mQueuedDisplayChanges.Add(QueuedDisplayChange(mQueuedText.Length, "ERROR".Length, 12));
|
mQueuedDisplayChanges.Add(QueuedDisplayChange(mQueuedText.Length, "ERROR".Length, (.)SourceElementType.BuildError));
|
||||||
}
|
}
|
||||||
if ((line.StartsWith("WARNING:")) || (line.StartsWith("WARNING(")))
|
if ((line.StartsWith("WARNING:")) || (line.StartsWith("WARNING(")))
|
||||||
{
|
{
|
||||||
mQueuedDisplayChanges.Add(QueuedDisplayChange(mQueuedText.Length, "WARNING".Length, 13));
|
mQueuedDisplayChanges.Add(QueuedDisplayChange(mQueuedText.Length, "WARNING".Length, (.)SourceElementType.BuildWarning));
|
||||||
}
|
}
|
||||||
Write(line);
|
Write(line);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue