summaryrefslogtreecommitdiff
path: root/wintable/new/resize.h
diff options
context:
space:
mode:
Diffstat (limited to 'wintable/new/resize.h')
-rw-r--r--wintable/new/resize.h4
1 files 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)