aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-04-29 10:52:10 -0400
committerMichael <[email protected]>2017-04-29 10:52:10 -0400
commit9916fafefca35e11edffb91566a3eee3aa90cd95 (patch)
tree6c5d7d1220b2abb8c34581734f225079094690fb /ShiftOS.WinForms/Applications
parentfc815c48696e5f3193411ad5decfd1324f06572f (diff)
downloadshiftos_thereturn-9916fafefca35e11edffb91566a3eee3aa90cd95.tar.gz
shiftos_thereturn-9916fafefca35e11edffb91566a3eee3aa90cd95.tar.bz2
shiftos_thereturn-9916fafefca35e11edffb91566a3eee3aa90cd95.zip
fix all beta 2.3 bugs
Diffstat (limited to 'ShiftOS.WinForms/Applications')
-rw-r--r--ShiftOS.WinForms/Applications/Terminal.cs8
1 files changed, 5 insertions, 3 deletions
diff --git a/ShiftOS.WinForms/Applications/Terminal.cs b/ShiftOS.WinForms/Applications/Terminal.cs
index a4889e9..3b1a020 100644
--- a/ShiftOS.WinForms/Applications/Terminal.cs
+++ b/ShiftOS.WinForms/Applications/Terminal.cs
@@ -405,7 +405,6 @@ namespace ShiftOS.WinForms.Applications
RemoteGuid = "";
}
};
-
}
private void Terminal_FormClosing(object sender, FormClosingEventArgs e)
@@ -425,10 +424,13 @@ namespace ShiftOS.WinForms.Applications
{
rtbterm.Select(rtbterm.TextLength, 0);
}
- TerminalBackend.PrintPrompt();
}
-
+ new Thread(() =>
+ {
+ Thread.Sleep(1000);
+ TerminalBackend.PrintPrompt();
+ }).Start();
}
public void OnSkinLoad()