Disabled Table column autoresizing on Windows for now as it causes weird bugs on Windows XP...

This commit is contained in:
Pietro Gagliardi 2014-08-06 19:56:14 -04:00
parent c4e95a0bbf
commit d9f9d40294
1 changed files with 2 additions and 0 deletions

View File

@ -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;