Removed 3D style for splitter on Mac since it looks bad

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74281 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2013-06-25 07:23:48 +00:00
parent 4f9ccec517
commit c901a24c2a

View File

@ -367,6 +367,7 @@ bool wxHtmlHelpWindow::Create(wxWindow* parent, wxWindowID id,
long splitterStyle = wxSP_3D;
// Drawing moving sash can cause problems on wxMac
#ifdef __WXMAC__
splitterStyle = 0; // 3D style looks poor on Mac
splitterStyle |= wxSP_LIVE_UPDATE;
#endif
m_Splitter = new wxSplitterWindow(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, splitterStyle);