GNOME Bugzilla – Bug 710180
editing-done signal from Gtk.Entry not working
Last modified: 2013-10-19 09:37:09 UTC
Created attachment 257345 [details] Python script If I connect an entry to a signal handler for the editing-done signal nothing happens. To reproduce: 1. Run attachment junk.py. In the text entry box, edit away. You'll notice that the program prints "Got it" every time you make an edit. In other words, the "changed" signal handler is being called appropriately on every change. 2. Edit line 17 in junk.py so that "changed" -> "editing-done". 3. Run the program again, do some edits, and press the enter key. Observe that nothing at all is printed out.
It looks like "editing-done" is part of the GtkCellEditable interface. Therefore, probably not usable outside the context of a GtkTreeView: https://developer.gnome.org/gtk3/3.10/GtkCellEditable.html#GtkCellEditable-editing-done If this is a regression though, please re-open.