Skip to content

Commit

Permalink
Merge pull request #77770 from jpcerrone/fix_minimize_missing
Browse files Browse the repository at this point in the history
Fix minimize button missing in non-resizable projects
  • Loading branch information
akien-mga committed Jun 12, 2023
2 parents 91e2859 + c819da7 commit 26e5a98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/windows/display_server_windows.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1328,7 +1328,7 @@ void DisplayServerWindows::_get_window_style(bool p_main_window, bool p_fullscre
r_style = WS_OVERLAPPEDWINDOW;
}
} else {
r_style = WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU;
r_style = WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX;
}
}

Expand Down

0 comments on commit 26e5a98

Please sign in to comment.