Fix min/max size calculation.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38681 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Clemens Zeidler 2010-09-17 01:10:13 +00:00
parent 5733bbb94b
commit d2cf4da51f

View File

@ -504,8 +504,8 @@ SATWindow::GetSizeLimits(int32* minWidth, int32* maxWidth, int32* minHeight,
// TODO get this values from the decorator
*minWidth += 11;
*minHeight += 11;
*maxWidth += 32;
*minHeight += 32;
*maxWidth += 11;
*maxHeight += 32;
}