diff options
| author | Pietro Gagliardi <[email protected]> | 2014-10-30 08:48:36 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-10-30 08:48:36 -0400 |
| commit | cedb545e5cd14b8900a28918a04055d145e20d28 (patch) | |
| tree | ac726d8b69e2e662a56463222e1558653a6958db /window_windows.c | |
| parent | 1e7fcd818c7436397027600ec7849d3df17c5533 (diff) | |
Okay, REALLY fixed the redraw issues now. A few wacky drawing issues remain, but... not THIS.
Diffstat (limited to 'window_windows.c')
| -rw-r--r-- | window_windows.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/window_windows.c b/window_windows.c index 8f618ab..57dc2a6 100644 --- a/window_windows.c +++ b/window_windows.c @@ -28,7 +28,7 @@ static LRESULT CALLBACK windowWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARA if (FillRect((HDC) wParam, &r, windowBackground) == 0) xpanic("error filling WM_PRINTCLIENT DC with window background color", GetLastError()); return lResult; - case WM_WINDOWPOSCHANGING: + // don't do this on WM_WINDOWPOSCHANGING; weird redraw issues will happen case WM_WINDOWPOSCHANGED: if (GetClientRect(hwnd, &r) == 0) xpanic("error getting client rect for Window in WM_SIZE", GetLastError()); |
