Per Robert R, apply: [ 1484667 ] Make wxWindow::Update() update native controls

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40250 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Alex Bligh
2006-07-23 20:56:08 +00:00
parent 815eadf3d0
commit 6bdeda4785

View File

@@ -3716,6 +3716,8 @@ void wxWindowGTK::GtkUpdate()
{ {
if (m_wxwindow && GTK_PIZZA(m_wxwindow)->bin_window) if (m_wxwindow && GTK_PIZZA(m_wxwindow)->bin_window)
gdk_window_process_updates( GTK_PIZZA(m_wxwindow)->bin_window, FALSE ); gdk_window_process_updates( GTK_PIZZA(m_wxwindow)->bin_window, FALSE );
if (m_widget && m_widget->window)
gdk_window_process_updates( m_widget->window, FALSE );
// for consistency with other platforms (and also because it's convenient // for consistency with other platforms (and also because it's convenient
// to be able to update an entire TLW by calling Update() only once), we // to be able to update an entire TLW by calling Update() only once), we