]> git.saurik.com Git - wxWidgets.git/commitdiff
Prevent splitter sash being set below minimum size when moved
authorJulian Smart <julian@anthemion.co.uk>
Thu, 5 Mar 2009 15:44:01 +0000 (15:44 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 5 Mar 2009 15:44:01 +0000 (15:44 +0000)
(using the same minimum size for both windows is probably a bad design choice)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59340 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/splitter.cpp

index 441d57618ac91d99b10d98b1c3560b011885b2f3..7d8c193d11739ee08e7fc4bbaff28c43a7c80704 100644 (file)
@@ -614,7 +614,7 @@ int wxSplitterWindow::AdjustSashPosition(int sashPos) const
             minSize = m_minimumPaneSize;
 
         int maxSize = GetWindowSize() - minSize - GetBorderSize() - GetSashSize();
-        if ( maxSize > 0 && sashPos > maxSize )
+        if ( maxSize > 0 && sashPos > maxSize && maxSize >= m_minimumPaneSize)
             sashPos = maxSize;
     }