On Tue, 22 Dec 2009 23:41:31 -0800, edgue wrote:

> How do I use gtk to enter a (hidden) text press ENTER ... done?

Connect the gtk.Entry's "activate" signal to the click() method:

        self.entry.connect("activate", self.click)

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to