From: Robin Dunn Date: Wed, 6 Apr 2005 17:26:49 +0000 (+0000) Subject: Really remove the droppings when there are no pages X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/2aa24b607061a398d0876b87e695f4f9dc531cb2 Really remove the droppings when there are no pages git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33385 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/notebook.cpp b/src/msw/notebook.cpp index dcf8118edc..eb4410c99c 100644 --- a/src/msw/notebook.cpp +++ b/src/msw/notebook.cpp @@ -772,7 +772,7 @@ void wxNotebook::OnSize(wxSizeEvent& event) { // Prevents droppings on resize, but does cause some flicker // when there are no pages. - Refresh(false); + Refresh(); event.Skip(); return; }