aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Controls/TerminalBox.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-06-11 17:58:35 -0400
committerMichael <[email protected]>2017-06-11 17:58:35 -0400
commitc0017e35a46eb20e7ba2717009171eedaf9785e7 (patch)
tree0a980b2ecbd368c068a9b15539704f5989095f26 /ShiftOS.WinForms/Controls/TerminalBox.cs
parent7ec048fe8536c9757eda47801af07956b826466d (diff)
downloadshiftos_thereturn-c0017e35a46eb20e7ba2717009171eedaf9785e7.tar.gz
shiftos_thereturn-c0017e35a46eb20e7ba2717009171eedaf9785e7.tar.bz2
shiftos_thereturn-c0017e35a46eb20e7ba2717009171eedaf9785e7.zip
Creation of new games is possible again!
Diffstat (limited to 'ShiftOS.WinForms/Controls/TerminalBox.cs')
-rw-r--r--ShiftOS.WinForms/Controls/TerminalBox.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/Controls/TerminalBox.cs b/ShiftOS.WinForms/Controls/TerminalBox.cs
index c188321..b454a77 100644
--- a/ShiftOS.WinForms/Controls/TerminalBox.cs
+++ b/ShiftOS.WinForms/Controls/TerminalBox.cs
@@ -63,6 +63,7 @@ namespace ShiftOS.WinForms.Controls
public void Write(string text)
{
+ Thread.Sleep(5);
this.HideSelection = true;
this.SelectionColor = ControlManager.ConvertColor(ConsoleEx.ForegroundColor);
this.SelectionBackColor = ControlManager.ConvertColor(ConsoleEx.BackgroundColor);
@@ -86,6 +87,7 @@ namespace ShiftOS.WinForms.Controls
public void WriteLine(string text)
{
+ Thread.Sleep(5);
Engine.AudioManager.PlayStream(Properties.Resources.writesound);
this.HideSelection = true;
this.SelectionColor = ControlManager.ConvertColor(ConsoleEx.ForegroundColor);