Change base editor window size to 75% of desktop size when restored for first time.

This commit is contained in:
Chandler Cox
2023-09-30 17:35:42 -05:00
parent fd3f10864b
commit bae1cfbc8a

View File

@@ -721,7 +721,7 @@ namespace FlaxEditor.Modules
// Create main window
var settings = CreateWindowSettings.Default;
settings.Title = "Flax Editor";
//settings.Size = Platform.DesktopSize;
settings.Size = Platform.DesktopSize * 0.75f;
settings.StartPosition = WindowStartPosition.CenterScreen;
settings.ShowAfterFirstPaint = true;