[REGEDIT] Fix splitter move redraw issues. (#6992)

* Add "HACK" per reviewer comment
* CORE-19576
This commit is contained in:
Doug Lyons 2024-06-19 00:39:39 -05:00 committed by GitHub
parent 55898a7ffd
commit 29a56f326a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -137,6 +137,7 @@ static void finish_splitbar(HWND hWnd, int x)
GetClientRect(hWnd, &rt);
g_pChildWnd->nSplitPos = x;
ResizeWnd(rt.right, rt.bottom);
InvalidateRect(hWnd, &rt, FALSE); // HACK: See CORE-19576
ReleaseCapture();
}