mirror of https://github.com/encounter/SDL.git
Make sure we don't send a resize event while a window is being destroyed
This fixes https://github.com/libsdl-org/SDL/issues/3669
This commit is contained in:
parent
3ababa09c5
commit
69518b9ecc
|
@ -2829,7 +2829,10 @@ void
|
|||
SDL_OnWindowResized(SDL_Window * window)
|
||||
{
|
||||
window->surface_valid = SDL_FALSE;
|
||||
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_SIZE_CHANGED, window->w, window->h);
|
||||
|
||||
if (!window->is_destroying) {
|
||||
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_SIZE_CHANGED, window->w, window->h);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in New Issue