Re: [pygtk] signal for detecting a losing focus in an entry

2012-04-05 Thread Timo
Op 05-04-12 04:53, Joe Nall schreef: I'm successfully catching a in an entry field and updating another computed field. I would like to catch and edit then a tab out as well. Is there a signal for this? What I have now is : self.foo = gtk.Entry(15) self.foo.connect('activate', self.update

[pygtk] signal for detecting a losing focus in an entry

2012-04-04 Thread Joe Nall
I'm successfully catching a in an entry field and updating another computed field. I would like to catch and edit then a tab out as well. Is there a signal for this? What I have now is : self.foo = gtk.Entry(15) self.foo.connect('activate', self.update) thanks, joe