Ensure that the windows are shown when Initialize is called too
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31355 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
874d01fea7
commit
b256b4ef8e
@ -709,6 +709,9 @@ void wxSplitterWindow::Initialize(wxWindow *window)
|
||||
wxASSERT_MSG( (!window || (window && window->GetParent() == this)),
|
||||
_T("windows in the splitter should have it as parent!") );
|
||||
|
||||
if (! window->IsShown())
|
||||
window->Show();
|
||||
|
||||
m_windowOne = window;
|
||||
m_windowTwo = (wxWindow *) NULL;
|
||||
DoSetSashPosition(0);
|
||||
|
Loading…
Reference in New Issue
Block a user