Startup of my program is somehow broken with 8.52, the window doesn't get maximized with WindowState := wsMaximized;
It is maximized to it's last stored size (left screenshot) but with enabled maximize button (right screenshot).
When I click the restore and then the maximize button again it is again resized to fullscreen size as it should be on startup.
Everything was ok with the last version I used 8.46
I'm now using this as temporary workaround
Code:
Top := 0;
Left := 0;
Width := Screen.WorkAreaWidth;
Height := Screen.WorkAreaHeight;
WindowState := wsMaximized;