From d1bd082b2e1fba41776eb1d69ba4f6ba142ba20f Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Fri, 12 Dec 2014 16:43:17 -0500 Subject: [PATCH] ok fixed that bug --- wintable/new/resize.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wintable/new/resize.h b/wintable/new/resize.h index 00087de..1edab7f 100644 --- a/wintable/new/resize.h +++ b/wintable/new/resize.h @@ -19,8 +19,8 @@ HANDLER(resizeHandler) // TODO does wp store the window rect or the client rect? if (GetClientRect(t->hwnd, &client) == 0) panic("error getting Table client rect in resizeHandler()"); - // TODO do this before calling updateTableWidth() (which calls repositionHeader()?)? - client.top -= t->headerHeight; + // TODO do this after calling updateTableWidth() (which calls repositionHeader()?)? + client.top += t->headerHeight; // update the width... // this will call repositionHeader(); there's a good reason... (see comments)