Removed a call to repositionHeader() in the resize handler; we already do this in hscrollto(), which is called by updateTableWidth().

This commit is contained in:
Pietro Gagliardi 2014-12-11 20:27:29 -05:00
parent 6286a3319f
commit b73b5b2ed0
1 changed files with 0 additions and 1 deletions

View File

@ -13,7 +13,6 @@ HANDLER(resizeHandler)
wp = (WINDOWPOS *) lParam;
if ((wp->flags & SWP_NOSIZE) != 0)
return FALSE;
repositionHeader(t);
updateTableWidth(t);
*lResult = 0;
return TRUE;