aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Program.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-04-17 15:10:34 -0400
committerMichael <[email protected]>2017-04-17 15:10:34 -0400
commit32fc6ed13d8334a6af66b43cf84324a123670620 (patch)
tree0467b09c0c3d0a65cd2cbbce45d4b8fccd70751a /ShiftOS.WinForms/Program.cs
parente2de1b7083c4e064b7f195b0d49c93019aa34e39 (diff)
downloadshiftos_thereturn-32fc6ed13d8334a6af66b43cf84324a123670620.tar.gz
shiftos_thereturn-32fc6ed13d8334a6af66b43cf84324a123670620.tar.bz2
shiftos_thereturn-32fc6ed13d8334a6af66b43cf84324a123670620.zip
Basically finish new OOBE
Diffstat (limited to 'ShiftOS.WinForms/Program.cs')
-rw-r--r--ShiftOS.WinForms/Program.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ShiftOS.WinForms/Program.cs b/ShiftOS.WinForms/Program.cs
index 348360f..36c9338 100644
--- a/ShiftOS.WinForms/Program.cs
+++ b/ShiftOS.WinForms/Program.cs
@@ -64,12 +64,12 @@ namespace ShiftOS.WinForms
{
AppearanceManager.SetupWindow(new Applications.Terminal());
};
- AppearanceManager.Initiate(new WinformsWindowManager());
- OutOfBoxExperience.Init(new Oobe());
Infobox.Init(new Dialog());
FileSkimmerBackend.Init(new WinformsFSFrontend());
var desk = new WinformsDesktop();
Desktop.Init(desk);
+ OutOfBoxExperience.Init(new Oobe());
+ AppearanceManager.Initiate(new WinformsWindowManager());
Application.Run(desk);
}
}