diff options
| -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; |
