From cedb545e5cd14b8900a28918a04055d145e20d28 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Thu, 30 Oct 2014 08:48:36 -0400 Subject: Okay, REALLY fixed the redraw issues now. A few wacky drawing issues remain, but... not THIS. --- tab_windows.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tab_windows.c') diff --git a/tab_windows.c b/tab_windows.c index 07935ff..d473999 100644 --- a/tab_windows.c +++ b/tab_windows.c @@ -31,7 +31,7 @@ static LRESULT CALLBACK tabSubProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM l return (*fv_DefSubclassProc)(hwnd, uMsg, wParam, lParam); case msgTabCurrentTabHasChildren: return (LRESULT) tabTabHasChildren((void *) data, SendMessageW(hwnd, TCM_GETCURSEL, 0, 0)); - case WM_WINDOWPOSCHANGING: + // don't do this on WM_WINDOWPOSCHANGING; weird redraw issues will happen case WM_WINDOWPOSCHANGED: wp = (WINDOWPOS *) lParam; resizeRect.left = wp->x; -- cgit v1.2.3