From 86fe58df399c5fb5023e49f3535186a0dd99997e Mon Sep 17 00:00:00 2001 From: GamesTrap Date: Tue, 23 Sep 2025 19:40:26 +0200 Subject: [PATCH] Removed check for Windows 7 or newer in _glfwSetWindowProgressIndicatorWin32() --- src/win32_window.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/win32_window.c b/src/win32_window.c index cf5bc6f4b..fb6be3fac 100644 --- a/src/win32_window.c +++ b/src/win32_window.c @@ -1645,12 +1645,6 @@ void _glfwSetWindowProgressIndicatorWin32(_GLFWwindow* window, int progressState int winProgressState = 0; int progressValue = (int)(value * 100.0); - if(!IsWindows7OrGreater()) - { - _glfwInputError(GLFW_FEATURE_UNAVAILABLE, "Win32: Taskbar progress is only supported on Windows 7 or newer"); - return; - } - if(!window->win32.taskbarList) return;