From: Alex Bligh Date: Sun, 23 Jul 2006 20:56:08 +0000 (+0000) Subject: Per Robert R, apply: [ 1484667 ] Make wxWindow::Update() update native controls X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6bdeda4785ad7313926a79d8c900ff8019d54f64 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 --- diff --git a/src/gtk/window.cpp b/src/gtk/window.cpp index 424a219958..5a57e60889 100644 --- a/src/gtk/window.cpp +++ b/src/gtk/window.cpp @@ -3716,6 +3716,8 @@ void wxWindowGTK::GtkUpdate() { if (m_wxwindow && GTK_PIZZA(m_wxwindow)->bin_window) 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 // to be able to update an entire TLW by calling Update() only once), we