Clear the setchpad after sending

This commit is contained in:
Marco Pesenti Gritti
2006-05-22 13:36:58 -04:00
parent 8b4a4e2afe
commit 2b2dbc8099
2 changed files with 5 additions and 0 deletions
+4
View File
@@ -22,6 +22,10 @@ class SketchPad(gtk.DrawingArea):
self.connect("button-release-event", self.__button_release_cb)
self.connect("motion-notify-event", self.__motion_notify_cb)
self.connect('expose_event', self.expose)
def clear(self):
self._sketches = []
self.window.invalidate_rect(None, False)
def expose(self, widget, event):
"""Draw the background of the sketchpad."""