From 3c076b7aa2adeae44a061bbbdb3b1c197517583e Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 25 Mar 2004 18:13:28 +0000 Subject: [PATCH] added UpdateSize git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26334 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/_splitter.i | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wxPython/src/_splitter.i b/wxPython/src/_splitter.i index a5fa5d5173..863ad23bbd 100644 --- a/wxPython/src/_splitter.i +++ b/wxPython/src/_splitter.i @@ -109,6 +109,11 @@ public: // parameter should be NULL) bool ReplaceWindow(wxWindow *winOld, wxWindow *winNew); + // Make sure the child window sizes are updated. This is useful + // for reducing flicker by updating the sizes before a + // window is shown, if you know the overall size is correct. + void UpdateSize(); + // Is the window split? bool IsSplit() const;