Quick typo in tabpage.cpp fixed.

This commit is contained in:
Pietro Gagliardi 2016-04-29 17:35:48 -04:00
parent bd2840255d
commit 974413bbe3
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ static void tabPageRelayout(struct tabPage *tp)
uiWindowsEnsureGetClientRect(tp->hwnd, &r);
tabPageMargins(tp, &mx, &my);
r.left += mx;
r.right += my;
r.top += my;
r.right -= 2 * mx;
r.bottom -= 2 * my;
child = (HWND) uiControlHandle(tp->child);