window maximize is broken in 8.52

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #35978
    dhwz2001
    Participant

    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;
    #51357
    Support
    Keymaster

    Hello!

    May be emulated this behaviour in a new application for tests?

    Constraints are not defined in this form?

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.