]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/winuniv.cpp
pressing PageDown and then PageUp should return to the same item
[wxWidgets.git] / src / univ / winuniv.cpp
index f3bb6be5c0dd1d80611cb76ca8e2733a6e0ac8c0..3d4292e5c31011eb66265939bb1acf573dd24b07 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     06.08.00
 // RCS-ID:      $Id$
 // Copyright:   (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 // ===========================================================================
@@ -399,7 +399,7 @@ void wxWindow::Refresh(bool eraseBackground, const wxRect *rectClient)
         wxWindow *win = node->GetData();
         // Only refresh sub controls when it is visible 
         // and when it is in the update region.
-        if(win->IsShown() && wxRegion(rectWin).Contains(win->GetRect()) != wxOutRegion)
+        if(!win->IsKindOf(CLASSINFO(wxTopLevelWindow)) && win->IsShown() && wxRegion(rectWin).Contains(win->GetRect()) != wxOutRegion)
             win->Refresh(eraseBackground, &rectWin);
             
         node = node->GetNext();