Ubuntu – How to force a redraw using python in gtk3

application-developmentgtk3python

Apparently, in Gtk3 the 'expose' event/signal is replaced with the 'draw' signal.

How do I force a redraw using python in Gtk3? I was not able to find any window invalidation function.

Best Answer

widget.queue_draw()

It is the same as in GTK+ 2.x.