]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/splitter.cpp
better native types for carbon
[wxWidgets.git] / src / generic / splitter.cpp
index 7d8c193d11739ee08e7fc4bbaff28c43a7c80704..411595f88f25fb62e5f3c00f3c2945404cf16387 100644 (file)
@@ -924,9 +924,12 @@ wxSize wxSplitterWindow::DoGetBestSize() const
         pSash = &sizeBest.y;
     }
 
         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();
     int border = 2*GetBorderSize();
-    *pSash += GetSashSize();
     sizeBest.x += border;
     sizeBest.y += border;
 
     sizeBest.x += border;
     sizeBest.y += border;