From d9f9d402947c10be03caba2032b832c7ef80498d Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Wed, 6 Aug 2014 19:56:14 -0400 Subject: [PATCH] Disabled Table column autoresizing on Windows for now as it causes weird bugs on Windows XP... --- redo/table_windows.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/redo/table_windows.c b/redo/table_windows.c index 8252f6c..5d24164 100644 --- a/redo/table_windows.c +++ b/redo/table_windows.c @@ -26,6 +26,8 @@ static LRESULT CALLBACK tableSubProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM tableStopColumnAutosize((void *) data); return (*fv_DefSubclassProc)(hwnd, uMsg, wParam, lParam); case WM_SIZE: + return (*fv_DefSubclassProc)(hwnd, uMsg, wParam, lParam); + /* TODO this causes weird issues with regards to item positioning on Windows XP */ if (tableAutosizeColumns((void *) data)) { int i, nColumns;