]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/frame.cpp
Route data from wxDataViewModel in a wxVariant
[wxWidgets.git] / src / gtk / frame.cpp
index ab11b08c03045c158ef76d544b3d703945d3875f..d0ade77e6d9edcad249e3ba610d33baa58547765 100644 (file)
@@ -490,9 +490,12 @@ void wxFrame::GtkOnSize( int WXUNUSED(x), int WXUNUSED(y),
         gtk_pizza_set_size( GTK_PIZZA(m_wxwindow),
                             m_frameStatusBar->m_widget,
                             xx, yy, ww, hh );
         gtk_pizza_set_size( GTK_PIZZA(m_wxwindow),
                             m_frameStatusBar->m_widget,
                             xx, yy, ww, hh );
-        gtk_widget_queue_draw (m_frameStatusBar->m_widget);
-        // FIXME: Do we really want to force an immediate redraw?
-        gdk_window_process_updates (m_frameStatusBar->m_widget->window, TRUE);
+        if (GTK_WIDGET_DRAWABLE (m_frameStatusBar->m_widget))
+        {
+            gtk_widget_queue_draw (m_frameStatusBar->m_widget);
+            // FIXME: Do we really want to force an immediate redraw?
+            gdk_window_process_updates (m_frameStatusBar->m_widget->window, TRUE);
+        }
     }
 #endif // wxUSE_STATUSBAR
 
     }
 #endif // wxUSE_STATUSBAR