Partially addresses https://github.com/libsdl-org/SDL/issues/6033
@@ -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)) {