From 871f3d172ea75153cf4a32659fdfe8045b238af2 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Mon, 20 Sep 2010 01:57:50 +0200 Subject: [PATCH] Replaced ShowWindow iconification with GLFW platform API call. --- src/win32/win32_window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win32/win32_window.c b/src/win32/win32_window.c index cd61f8af..7ba50a03 100644 --- a/src/win32/win32_window.c +++ b/src/win32/win32_window.c @@ -663,7 +663,7 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg, { // Iconify the (on top, borderless, oddly positioned) // window or the user will be annoyed - ShowWindow(window->Win32.handle, SW_MINIMIZE); + _glfwPlatformIconifyWindow(window); } if (_glfwLibrary.Win32.monitor.modeChanged)