aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/OobeStory.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-05-08 12:09:45 -0400
committerMichael <[email protected]>2017-05-08 12:09:45 -0400
commit64f491ff2821f99fc7485d9b062cc75c7d8fff1c (patch)
tree555152632b204116f1da06424d37398579634c1a /ShiftOS.WinForms/OobeStory.cs
parent75ed7e9215ba88358d9b838dd82fa3841f78ae5a (diff)
downloadshiftos_thereturn-64f491ff2821f99fc7485d9b062cc75c7d8fff1c.tar.gz
shiftos_thereturn-64f491ff2821f99fc7485d9b062cc75c7d8fff1c.tar.bz2
shiftos_thereturn-64f491ff2821f99fc7485d9b062cc75c7d8fff1c.zip
Fix softlock when creating new saves.
Diffstat (limited to 'ShiftOS.WinForms/OobeStory.cs')
-rw-r--r--ShiftOS.WinForms/OobeStory.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/ShiftOS.WinForms/OobeStory.cs b/ShiftOS.WinForms/OobeStory.cs
index 39ca5b5..a35e1d8 100644
--- a/ShiftOS.WinForms/OobeStory.cs
+++ b/ShiftOS.WinForms/OobeStory.cs
@@ -141,11 +141,9 @@ namespace ShiftOS.WinForms
Console.WriteLine();
Console.WriteLine("Next, let's get user information.");
Console.WriteLine();
- Desktop.InvokeOnWorkerThread(() =>
- {
- ShiftOS.Engine.OutOfBoxExperience.PromptForLogin();
- });
+ ShiftOS.Engine.OutOfBoxExperience.PromptForLogin();
}
+
private static bool isValid(string text, string chars)
{
foreach(var c in text)