From: Vadim Zeitlin Date: Mon, 15 Nov 2004 19:20:47 +0000 (+0000) Subject: set bg style to custom as we overwrite it anyhow X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/658f53c700b44bfbe061039339ae54de1b03858d set bg style to custom as we overwrite it anyhow git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30553 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/splitter.cpp b/src/generic/splitter.cpp index 11ab7e9734..8f21f6cb0b 100644 --- a/src/generic/splitter.cpp +++ b/src/generic/splitter.cpp @@ -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; }