Skip to content

Commit 981bbae

Browse files
committed
Always open home page on launch
1 parent 1ddb240 commit 981bbae

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ContentEditor.App/MainLoop.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,7 @@ public void RunEventLoop()
4848
float timer = 0;
4949
windows.First().InitGraphics();
5050
ExecDebugTests();
51-
if (AppConfig.Instance.IsFirstTime) {
52-
windows.First().AddUniqueSubwindow(new HomeWindow());
53-
}
51+
windows.First().AddUniqueSubwindow(new HomeWindow());
5452

5553
var fpsLimit = new FpsLimiter();
5654
while (windows.FirstOrDefault()?.IsClosing == false) {

0 commit comments

Comments
 (0)