diff options
| author | Aren <[email protected]> | 2017-02-08 18:22:02 +0100 |
|---|---|---|
| committer | Aren <[email protected]> | 2017-02-08 18:22:02 +0100 |
| commit | b6dff54e9509b3348997a4da9652b152a3033cdd (patch) | |
| tree | 43ceab653ca3fb906c8d17d8c3d0ff4c174af415 /ShiftOS.WinForms/FakeSetupScreen.cs | |
| parent | 512a02ba88678cb7ddd65f32245135c8cf2ba1c3 (diff) | |
| download | shiftos_thereturn-b6dff54e9509b3348997a4da9652b152a3033cdd.tar.gz shiftos_thereturn-b6dff54e9509b3348997a4da9652b152a3033cdd.tar.bz2 shiftos_thereturn-b6dff54e9509b3348997a4da9652b152a3033cdd.zip | |
Fixed #50 and errors during Oobe will no longer restart the entire step.
Diffstat (limited to 'ShiftOS.WinForms/FakeSetupScreen.cs')
| -rw-r--r-- | ShiftOS.WinForms/FakeSetupScreen.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ShiftOS.WinForms/FakeSetupScreen.cs b/ShiftOS.WinForms/FakeSetupScreen.cs index dd93a55..6831f5e 100644 --- a/ShiftOS.WinForms/FakeSetupScreen.cs +++ b/ShiftOS.WinForms/FakeSetupScreen.cs @@ -82,7 +82,7 @@ So make sure your password is secure enough that it can't be guessed, but easy f { TextType("You must specify a valid username!"); currentPage--; - SetupUI(); + //SetupUI(); break; } @@ -90,7 +90,7 @@ So make sure your password is secure enough that it can't be guessed, but easy f { TextType("A password would seriously be recommended."); currentPage--; - SetupUI(); + //SetupUI(); break; } @@ -98,7 +98,7 @@ So make sure your password is secure enough that it can't be guessed, but easy f { TextType("You must name your computer."); currentPage--; - SetupUI(); + //SetupUI(); break; } @@ -109,7 +109,7 @@ So make sure your password is secure enough that it can't be guessed, but easy f { TextType("I have just verified that your username and password already exists on my end. Please choose another."); currentPage--; - SetupUI(); + //SetupUI(); } else |
