]> git.saurik.com Git - wxWidgets.git/commitdiff
Use live update for splitter on Mac since Leopard seems even more susceptible to...
authorJulian Smart <julian@anthemion.co.uk>
Thu, 4 Jun 2009 08:01:58 +0000 (08:01 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 4 Jun 2009 08:01:58 +0000 (08:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60889 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/html/helpwnd.cpp

index 8f5d31464209079570e8664934c2a68adeac7f86..b4aafe1a7654767e56e6684dc29dc68112026d72 100644 (file)
@@ -364,7 +364,12 @@ bool wxHtmlHelpWindow::Create(wxWindow* parent, wxWindowID id,
     {
         // traditional help controller; splitter window with html page on the
         // right and a notebook containing various pages on the left
-        m_Splitter = new wxSplitterWindow(this);
+        long splitterStyle = wxSP_3D;
+        // Drawing moving sash can cause problems on wxMac
+#ifdef __WXMAC__
+        splitterStyle |= wxSP_LIVE_UPDATE;
+#endif
+        m_Splitter = new wxSplitterWindow(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, splitterStyle);
 
         topWindowSizer->Add(m_Splitter, 1, wxEXPAND);