1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Merge pull request #1854 from Fusioon/fix_maximize

Fix IDE starting in normal window instead of maximized
This commit is contained in:
Brian Fiete 2023-05-25 09:47:29 -04:00 committed by GitHub
commit 9d125eaaf2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12248,7 +12248,7 @@ namespace IDE
if (mRunningTestScript)
flags |= .NoActivate;
if (mRequestedShowKind == .Maximized)
if (mRequestedShowKind == .Maximized || mRequestedShowKind == .ShowMaximized)
flags |= .ShowMaximized;
scope AutoBeefPerf("IDEApp.Init:CreateMainWindow");