Corrected color of normal output

This commit is contained in:
d3agle 2015-09-05 12:24:43 -05:00
parent 567d9dc2f5
commit 2662f1d952
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ namespace xServer.Forms
{
txtConsoleOutput.Invoke((MethodInvoker)delegate
{
txtConsoleOutput.SelectionColor = Color.White;
txtConsoleOutput.SelectionColor = Color.WhiteSmoke;
txtConsoleOutput.AppendText(message);
});
}