Invalidate only the specified rectangle

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58623 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2009-02-02 14:05:46 +00:00
parent 08bbdb0858
commit 4c509aecb6

View File

@@ -3564,7 +3564,7 @@ void wxWindowGTK::Refresh(bool WXUNUSED(eraseBackground),
r.y = rect->y;
r.width = rect->width;
r.height = rect->height;
gdk_window_invalidate_rect( m_wxwindow->window, NULL, TRUE );
gdk_window_invalidate_rect( m_wxwindow->window, &r, TRUE );
#endif
}
}