aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Program.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-04-05 21:57:09 -0400
committerlempamo <[email protected]>2017-04-05 21:57:09 -0400
commit07376e9ecd6687b2c4278661d0eaf3795d5124c3 (patch)
tree76c1d65a001044251162351de788ba242dfe56de /ShiftOS.WinForms/Program.cs
parentc8f7cd286327a70280a7db132e45943b44273235 (diff)
downloadshiftos_thereturn-07376e9ecd6687b2c4278661d0eaf3795d5124c3.tar.gz
shiftos_thereturn-07376e9ecd6687b2c4278661d0eaf3795d5124c3.tar.bz2
shiftos_thereturn-07376e9ecd6687b2c4278661d0eaf3795d5124c3.zip
language selection screen!
Diffstat (limited to 'ShiftOS.WinForms/Program.cs')
-rw-r--r--ShiftOS.WinForms/Program.cs9
1 files changed, 8 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/Program.cs b/ShiftOS.WinForms/Program.cs
index 0578389..b5f371e 100644
--- a/ShiftOS.WinForms/Program.cs
+++ b/ShiftOS.WinForms/Program.cs
@@ -58,6 +58,14 @@ namespace ShiftOS.WinForms
Environment.Exit(0);
};
+ var langselect = new LanguageSelector();
+ langselect.ShowDialog();
+
+ while (!langselect.rdy)
+ {
+
+ };
+
TutorialManager.RegisterTutorial(new Oobe());
TerminalBackend.TerminalRequested += () =>
@@ -102,7 +110,6 @@ namespace ShiftOS.WinForms
}
}
-
public class WinformsFSFrontend : IFileSkimmer
{