https://git.reactos.org/?p=reactos.git;a=commitdiff;h=d5707eefe2f08d230c07a…
commit d5707eefe2f08d230c07ab4693ac0bd59e809f85
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Tue Dec 21 03:02:55 2021 +0100
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Thu Jun 15 12:45:08 2023 +0200
[TASKMGR] High speed update is twice per second, and not every second.
And honour what is also told by the info in the status bar.
---
base/applications/taskmgr/taskmgr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/base/applications/taskmgr/taskmgr.c b/base/applications/taskmgr/taskmgr.c
index 820f85698ed..844e85acefc 100644
--- a/base/applications/taskmgr/taskmgr.c
+++ b/base/applications/taskmgr/taskmgr.c
@@ -518,7 +518,7 @@ static void SetUpdateSpeed(HWND hWnd)
/* Setup update speed (pause=fall down) */
switch (TaskManagerSettings.UpdateSpeed) {
case ID_VIEW_UPDATESPEED_HIGH:
- SetTimer(hWnd, 1, 1000, NULL);
+ SetTimer(hWnd, 1, 500, NULL);
break;
case ID_VIEW_UPDATESPEED_NORMAL:
SetTimer(hWnd, 1, 2000, NULL);