From: Vadim Zeitlin Date: Sat, 7 Mar 2009 15:16:48 +0000 (+0000) Subject: don't add the sash size to the best size if the window is not actually split (see... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/24dd7bc824a8d91e13fad8d2ac980e3c5b3cf40b don't add the sash size to the best size if the window is not actually split (see #10533) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59415 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/splitter.cpp b/src/generic/splitter.cpp index 7d8c193d11..411595f88f 100644 --- a/src/generic/splitter.cpp +++ b/src/generic/splitter.cpp @@ -924,9 +924,12 @@ wxSize wxSplitterWindow::DoGetBestSize() const pSash = &sizeBest.y; } - // account for the border and the sash + // account for the sash if the window is actually split + if ( m_windowOne && m_windowTwo ) + *pSash += GetSashSize(); + + // account for the border too int border = 2*GetBorderSize(); - *pSash += GetSashSize(); sizeBest.x += border; sizeBest.y += border;