I'm creating paint program based on this program. Dragging the mouse faster results in spotty brush strokes, so I'm wondering if there is a faster way to redraw the drawing area.
This is the current redraw function. It is already utilizing widget.queue_draw_area and the screen is redrawn from a pixmap.
def expose_event(self, widget, event):
x , y, width, height = event.area
widget.window.draw_drawable(widget.get_style().fg_gc[gtk.STATE_NORMAL],
self.pixmap, x, y, x, y,
width, height)