このページの下部にある例を見てください: http://www.pygtk.org/pygtk2tutorial/sec-EventHandling.html それは言う:
57 def button_press_event(widget, event):
58 if event.button == 1 and pixmap != None:
59 draw_brush(widget, event.x, event.y)
60 return True
では、「return True」は何のためにあるのでしょうか。