On Wed, Jan 29, 2003 at 10:09:48PM -0600, Robert Lowe wrote: > I'm trying to capture mouse clicks on an empty window using pygtk2.
You need to add an event mask: w.add_events(gtk.gdk.BUTTON_PRESS_MASK) See http://www.async.com.br/faq/pygtk/index.py?req=all#3.3 Dave Cook _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
