]> git.saurik.com Git - wxWidgets.git/commitdiff
Really remove the droppings when there are no pages
authorRobin Dunn <robin@alldunn.com>
Wed, 6 Apr 2005 17:26:49 +0000 (17:26 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 6 Apr 2005 17:26:49 +0000 (17:26 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33385 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/notebook.cpp

index dcf8118edc1318b63ad834d95a3d5f57b48ddf83..eb4410c99cce3b35e5ed0ba54807773e183e471b 100644 (file)
@@ -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;
     }