X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6738c4724a30e4dc4498bad2f2028fb913fd2f33..c9cc9a2f3e41341a4c04c67137b58faaeaa55366:/src/html/helpwnd.cpp diff --git a/src/html/helpwnd.cpp b/src/html/helpwnd.cpp index 8f5d314642..b4aafe1a76 100644 --- a/src/html/helpwnd.cpp +++ b/src/html/helpwnd.cpp @@ -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);