Fix flickering window on move

Using this method perform very minor flicker when moving around on screen.
This commit is contained in:
RadWolfie 2018-08-29 19:17:40 -05:00
parent a0cf419193
commit 44013064e0
1 changed files with 1 additions and 2 deletions

View File

@ -1301,8 +1301,7 @@ LRESULT CALLBACK WndMain::WndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lP
{
// Redraw the window on move, prevents corrupt background image that happens
// when windows doesn't call the WM_DRAW event when the window is moved too quickly.
InvalidateRect(NULL, NULL, false);
UpdateWindow(hwnd);
RedrawWindow(hwnd, NULL, NULL, RDW_INVALIDATE);
break;
}