Pier wrote:

> Hi to all
> i need to handle a double click on a row of a CList but i can't figure
> the name of the signal  ("double_click" does not
> work); any idea
> Tks
>
> Pier
>
> _______________________________________________
> pygtk mailing list   [EMAIL PROTECTED]
> http://www.daa.com.au/mailman/listinfo/pygtk

Try this:


def on_clist_button_press_event(clist,mousebutton,data):
    if mousebutton.type==5:
       print "Double-click!"

clist.connect("button_press_event",on_clist_button_press_event)


- Ricardo


_______________________________________________
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk

Reply via email to