+2010-02-13 Jan Djärv <jan.h.d@swipnet.se>
+
+ * xterm.c (x_clear_frame_area): Cal gtk_widget_queue_draw if USE_GTK,
+ bug #5571.
+
2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
* xsmfns.c (x_session_initialize): Move initialization of ice_fd and
{
x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
x, y, width, height, False);
+#ifdef USE_GTK
+ /* Must queue a redraw, because scroll bars might have been cleared. */
+ if (FRAME_GTK_WIDGET (f))
+ gtk_widget_queue_draw (FRAME_GTK_WIDGET (f));
+#endif
}