From 0d74163c21afea15998889c5c2f2185228f937f6 Mon Sep 17 00:00:00 2001 From: ws909 <37029098+ws909@users.noreply.github.com> Date: Mon, 6 Mar 2023 13:42:24 +0100 Subject: [PATCH] How exactly did I manage to remove that? Well, now it's back! --- src/win32_window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win32_window.c b/src/win32_window.c index 8e46cb07..ff09a168 100644 --- a/src/win32_window.c +++ b/src/win32_window.c @@ -1756,7 +1756,7 @@ void _glfwSetWindowTaskbarBadgeWin32(_GLFWwindow* window, int count) } // TODO: should probably set the alt text too. Integer as text is better than nothing. Use the same string for the icon and alt text in the string version. - res = window->win32.taskbarList->lpVtbl-> (window->win32.taskbarList, window->win32.handle, icon, TEXT("")); + res = window->win32.taskbarList->lpVtbl->SetOverlayIcon(window->win32.taskbarList, window->win32.handle, icon, TEXT("")); if(icon) DestroyIcon(icon);