SDL: Don't send a resize event when the window is resized to the dock icon

From a1e34b5e35bd6db929ec2faf932a988f63cd11b6 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Thu, 11 Aug 2022 08:52:51 -0700
Subject: [PATCH] Don't send a resize event when the window is resized to the
 dock icon

Partially addresses https://github.com/libsdl-org/SDL/issues/6033
---
 src/video/windows/SDL_windowsevents.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/video/windows/SDL_windowsevents.c b/src/video/windows/SDL_windowsevents.c
index 6f21b2343a2..aa29da1579f 100644
--- a/src/video/windows/SDL_windowsevents.c
+++ b/src/video/windows/SDL_windowsevents.c
@@ -1168,6 +1168,11 @@ WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
                 break;
             }
 
+            /* When the window is minimized it's resized to the dock icon size, ignore this */
+            if ((data->window->flags & SDL_WINDOW_MINIMIZED) != 0) {
+                break;
+            }
+
             if (!GetClientRect(hwnd, &rect) || IsRectEmpty(&rect)) {
                 break;
             }