aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Controls/TerminalBox.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-05-28 07:21:16 -0400
committerMichael <[email protected]>2017-05-28 07:21:16 -0400
commit8e3bdf71e71096711f11a0d51b2b384e117391ee (patch)
tree4df860d8c7f48837a101491ce0d756a66720ff2a /ShiftOS.WinForms/Controls/TerminalBox.cs
parentdc0b8c66885593f7412e24bf7132bc08f6c40a9c (diff)
downloadshiftos_thereturn-8e3bdf71e71096711f11a0d51b2b384e117391ee.tar.gz
shiftos_thereturn-8e3bdf71e71096711f11a0d51b2b384e117391ee.tar.bz2
shiftos_thereturn-8e3bdf71e71096711f11a0d51b2b384e117391ee.zip
strip things down but make things better
Diffstat (limited to 'ShiftOS.WinForms/Controls/TerminalBox.cs')
-rw-r--r--ShiftOS.WinForms/Controls/TerminalBox.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/ShiftOS.WinForms/Controls/TerminalBox.cs b/ShiftOS.WinForms/Controls/TerminalBox.cs
index 7658c8c..25f7144 100644
--- a/ShiftOS.WinForms/Controls/TerminalBox.cs
+++ b/ShiftOS.WinForms/Controls/TerminalBox.cs
@@ -64,9 +64,6 @@ namespace ShiftOS.WinForms.Controls
public void Write(string text)
{
this.HideSelection = true;
- this.SelectionFont = ConstructFont();
- this.SelectionColor = ControlManager.ConvertColor(ConsoleEx.ForegroundColor);
- this.SelectionBackColor = ControlManager.ConvertColor(ConsoleEx.BackgroundColor);
this.AppendText(Localization.Parse(text));
this.HideSelection = false;
}
@@ -89,9 +86,6 @@ namespace ShiftOS.WinForms.Controls
Engine.AudioManager.PlayStream(Properties.Resources.writesound);
this.HideSelection = true;
this.Select(this.TextLength, 0);
- this.SelectionFont = ConstructFont();
- this.SelectionColor = ControlManager.ConvertColor(ConsoleEx.ForegroundColor);
- this.SelectionBackColor = ControlManager.ConvertColor(ConsoleEx.BackgroundColor);
this.AppendText(Localization.Parse(text) + Environment.NewLine);
this.HideSelection = false;
}