From af8de385a985b90870487a6eec25810cb81802c4 Mon Sep 17 00:00:00 2001 From: kojix2 <2xijok@gmail.com> Date: Mon, 30 Jun 2025 00:26:32 +0900 Subject: [PATCH] Fix timer ID mismatch in Windows table indeterminate progress bar --- windows/table.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/table.cpp b/windows/table.cpp index 2cb307b6..d36a5a60 100644 --- a/windows/table.cpp +++ b/windows/table.cpp @@ -226,7 +226,7 @@ int uiprivTableProgress(uiTable *t, int item, int subitem, int modelColumn, LONG if (SetTimer(t->hwnd, (UINT_PTR) t, 30, NULL) == 0) logLastError(L"SetTimer()"); if (stopTimer) - if (KillTimer(t->hwnd, (UINT_PTR) (&t)) == 0) + if (KillTimer(t->hwnd, (UINT_PTR) t) == 0) logLastError(L"KillTimer()"); return progress;