]> git.saurik.com Git - wxWidgets.git/commitdiff
set bg style to custom as we overwrite it anyhow
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 15 Nov 2004 19:20:47 +0000 (19:20 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 15 Nov 2004 19:20:47 +0000 (19:20 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30553 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/splitter.cpp

index 11ab7e9734822f083470c67ae5d0f1d1a1cafe67..8f21f6cb0bd2138bd195c56793bd2e31da5a142a 100644 (file)
@@ -96,6 +96,10 @@ bool wxSplitterWindow::Create(wxWindow *parent, wxWindowID id,
 
     m_permitUnsplitAlways = (style & wxSP_PERMIT_UNSPLIT) != 0;
 
+    // don't erase the splitter background, it's pointless as we overwrite it
+    // anyhow
+    SetBackgroundStyle(wxBG_STYLE_CUSTOM);
+
     return true;
 }