]> git.saurik.com Git - wxWidgets.git/commit - tests/sizers/boxsizer.cpp
Ensure that size in the major direction of box sizer doesn't exceed the total.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 18 Mar 2010 15:07:14 +0000 (15:07 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 18 Mar 2010 15:07:14 +0000 (15:07 +0000)
commit26022721e88892446ebcfc34bc34384492952fa9
treedc3040d455af7edc27c647987784453c33e3b9f8
parent869c7a944b2be1a0e35cf2a0df631693a217f9f0
Ensure that size in the major direction of box sizer doesn't exceed the total.

After fixing the problem with "growing items by negative proportion" in r56010
(which still was the correct thing to do as it fixed such indefensibly broken
behaviour as shrinking items with larger proportion by more than "smaller"
items when there was not enough space) the items in a box sizer could become
larger than the total space allocated to the sizer resulting in only parts of
them being visible.

Fix this by truncating the items to the (remaining) total size even if this
means making them less than their minimal sizes -- because there is nothing
else we can do when the total space is smaller than the sum of minimal sizes
anyhow.

Closes #10008.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63704 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
src/common/sizer.cpp
tests/sizers/boxsizer.cpp