From ffcce8faaeb14eef386aa9c7faaafd10b30a50bf Mon Sep 17 00:00:00 2001 From: Giannis Adamopoulos Date: Mon, 13 Feb 2017 17:31:14 +0000 Subject: [PATCH] [UXTHEME] -Remove an overzealous check that prevented the scrollbar from being repainted when the cursor was moving in it. svn path=/trunk/; revision=73791 --- reactos/dll/win32/uxtheme/nonclient.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/reactos/dll/win32/uxtheme/nonclient.c b/reactos/dll/win32/uxtheme/nonclient.c index e3a7470c76d..3374f3b0f5f 100644 --- a/reactos/dll/win32/uxtheme/nonclient.c +++ b/reactos/dll/win32/uxtheme/nonclient.c @@ -707,10 +707,6 @@ ThemeHandleNcMouseMove(HWND hWnd, DWORD ht, POINT* pt) TrackMouseEvent(&tme); } - /* Dont do any drawing if the hit test wasn't changed */ - if (ht == pcontext->lastHitTest) - return 0; - ThemeInitDrawContext(&context, hWnd, 0); if (context.wi.dwStyle & WS_SYSMENU) { -- 2.17.1