]> git.saurik.com Git - wxWidgets.git/commitdiff
Updated with notes about recent sizer changes
authorRobin Dunn <robin@alldunn.com>
Wed, 14 Apr 2004 23:50:37 +0000 (23:50 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 14 Apr 2004 23:50:37 +0000 (23:50 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26779 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/changes.txt

index 42f66de66070f28df235e3b2df3d595c8e33e651..10a646a22151bb605bea9b04171fdc21deec3e20 100644 (file)
@@ -100,6 +100,14 @@ All (GUI):
 - Added UpdateSize to wxSplitterWindow to allow layout while hidden
 - implemented Freeze/Thaw() for wxGenericTreeCtrl (Kevin Hock)
 - support for KOI8-U encoding added (Yuriy Tkachenko)
+- The old wxADJUST_MINSIZE behaviouris now the default behaviour for
+  sizer items that are windows.  This means that GetAdjustedBestSize
+  will now be called by default to determine the minimum size that a
+  window in a sizer should have.  If you want to still use the initial
+  size (and not the BestSize) then use the wxFIXED_MINSIZE flag.  When
+  windows are added to a sizer their initial size is made the window's
+  min size using SetSizeHints, and calls to wxSizer::SetItemMinSize
+  are also forwarded to SetSizeHints for window items.
 
 wxMSW: