Merge pull request #60806 from pfertyk/issue-60466-nan-in-windows-size
This commit is contained in:
commit
2cad0055fa
1 changed files with 2 additions and 0 deletions
|
@ -1529,6 +1529,8 @@ void OS_X11::set_window_size(const Size2 p_size) {
|
|||
int old_h = xwa.height;
|
||||
|
||||
Size2 size = p_size;
|
||||
|
||||
ERR_FAIL_COND(Math::is_nan(size.x) || Math::is_nan(size.y));
|
||||
size.x = MAX(1, size.x);
|
||||
size.y = MAX(1, size.y);
|
||||
|
||||
|
|
Loading…
Reference in a new issue