diff options
| author | Michael <[email protected]> | 2017-02-02 11:02:58 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-02-02 11:02:58 -0500 |
| commit | fbc1586ff2e1362ce53952f65d78eb015efbcb04 (patch) | |
| tree | e5df4399483bce356a3bfcfa52db98f33e9b2564 /ShiftOS.WinForms/Oobe.cs | |
| parent | baf9c4834607dcfac7cbc85d1fa406a3076a394c (diff) | |
| download | shiftos_thereturn-fbc1586ff2e1362ce53952f65d78eb015efbcb04.tar.gz shiftos_thereturn-fbc1586ff2e1362ce53952f65d78eb015efbcb04.tar.bz2 shiftos_thereturn-fbc1586ff2e1362ce53952f65d78eb015efbcb04.zip | |
Fully implement mud traversal into OOBE and setup
Diffstat (limited to 'ShiftOS.WinForms/Oobe.cs')
| -rw-r--r-- | ShiftOS.WinForms/Oobe.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/Oobe.cs b/ShiftOS.WinForms/Oobe.cs index 761aa29..b04f6e0 100644 --- a/ShiftOS.WinForms/Oobe.cs +++ b/ShiftOS.WinForms/Oobe.cs @@ -257,6 +257,10 @@ namespace ShiftOS.WinForms var fsw = new FakeSetupScreen(this, 10); fsw.Show(); fsw.TopMost = true; + fsw.DoneLoggingIn += () => + { + this.Close(); + }; } public void StartTrailer() |
