Fix: height, not width

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1401 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2008-12-03 00:30:09 +00:00
parent 18a1f48fa0
commit dd4ade3867
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ int nxtk_setsize(NXTKWINDOW hfwnd, FAR struct nxgl_size_s *size)
/* Add the sizes need for the toolbar and the borders */
newsize.w = size->w + 2 * CONFIG_NXTK_BORDERWIDTH;
newsize.h = size->w + fwnd->tbheight + 2 * CONFIG_NXTK_BORDERWIDTH;
newsize.h = size->h + fwnd->tbheight + 2 * CONFIG_NXTK_BORDERWIDTH;
/* Then set the window size */