From 2662f1d95258e20a0d79d077a69f2f5736523d85 Mon Sep 17 00:00:00 2001 From: d3agle Date: Sat, 5 Sep 2015 12:24:43 -0500 Subject: [PATCH] Corrected color of normal output --- Server/Forms/FrmRemoteShell.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/Forms/FrmRemoteShell.cs b/Server/Forms/FrmRemoteShell.cs index 9dd5dc1e..2579eb4a 100644 --- a/Server/Forms/FrmRemoteShell.cs +++ b/Server/Forms/FrmRemoteShell.cs @@ -100,7 +100,7 @@ public void PrintMessage(string message) { txtConsoleOutput.Invoke((MethodInvoker)delegate { - txtConsoleOutput.SelectionColor = Color.White; + txtConsoleOutput.SelectionColor = Color.WhiteSmoke; txtConsoleOutput.AppendText(message); }); }