Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugfix: CanResize unused when Width/Height is set (#12445)
* Trigger CI/CD * Bugfix: CanResize unused when Width/Height is set 2 problems in X11Window.cs - In UpdateSizeHints: max and min sizes were set regardless of _canResize, if preResize is not null - In Resize, many things are set without checking for _canResize Added the check for _canResize, which stops the resizing if not forced (e.g. when a dialog needs a startup size) Make setting varying max and min exclusively when _canResize is false --------- Co-authored-by: stepan_govorko <[email protected]>