Konstantin Evdokimenko wrote:
Use this on your expose event callback. gdk_window_begin_paint_rect(widget->window, & rect); /* Draw something */ gdk_window_end_paint(widget->window); And make sure that widget is double buffered (by default). Look at gtk_widget_set_double_buffered function. _______________________________________________ gtk-app-devel-list mailing list gtk-app-devel-list gnome org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list
Thanks. I tried that, but that didn't work.By the way, aren't gdk_window_begin_paint_rect and gdk_window_end_paint automatically called before and after (respectively) the expose-event when double buffering is switched on for a GtkWidget ?