diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-06 19:56:14 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-06 19:56:14 -0400 |
| commit | d9f9d402947c10be03caba2032b832c7ef80498d (patch) | |
| tree | 273904e7eeef7fd8ed175416288e2dea15f2d08e | |
| parent | c4e95a0bbf146e9cf87d1ee185c46aba17b23f64 (diff) | |
Disabled Table column autoresizing on Windows for now as it causes weird bugs on Windows XP...
| -rw-r--r-- | redo/table_windows.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; |
