On Sat, 15 Jan 2005 18:59:37 -0600, Mauricio Tellez
<[EMAIL PROTECTED]> wrote:
> Hi, I have a ComboBoxEntry with autocompletion for the entry, and a
> callback for the "changed" signal of the combo. When I select an item
> from the combo's popup list the "changed" signal is emited and a
> TreeView is fill upon combo select value, but when I start typing at
> combo's entry then a popup list show me posible completions, but if I
> select one item from this list, the "changed" signal is not emited,
> and the TreeView is not filled. Any idea?

You want to connect to the change signal of the entry, not the combo
-- that way the same action will happen no matter how the entry
changes (typing, selecting, etc.).

Note though that this will call your treeview filtering routine with
every keystroke, not just when an item is selected from a list.

Tom
_______________________________________________
pygtk mailing list   [email protected]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

Reply via email to