Hi Vasilis,

  Sorry I can't answer your specific question about event debuggers for
tkinter.

However, general advice: try and make a simplified version of the problem
which you can send the list. Usually, in the making of it, you solve the
problem.

Also, are you aware that if you bind <Double-1> AND either of <Button-1> or
<ButtonRelease-1>,
ALL of them will be called when a double-click occurs. If you have a
button-1 event binding,
does it do anything which will de-focus the widget so that the second click
is no longer
in the same space? (e.g., closing the lsitbox, etc.)

Mick

On 28 December 2014 at 16:48, Vasilis Vlachoudis <vasilis.vlachou...@cern.ch
> wrote:

>  Hi all,
>
> in my application I have a lost <Double-1> event in a multi listbox.
> The program is quite long about 100000 lines of code and
> I cannot find where the event is lost.
> My suspicion is that I lose the Focus in the middle of the double event.
> When I use <Button-1> or <ButtonRelease-1> everything works, but
> not with the <Double-1>.
>
> So my questions is, does it exist any event debugger so I can monitor
> the events on a specific widget to find out what happens in between the
> two clicks?
>
> Thanks in advance
> Vasilis
>
> _______________________________________________
> Tkinter-discuss mailing list
> Tkinter-discuss@python.org
> https://mail.python.org/mailman/listinfo/tkinter-discuss
>
>
_______________________________________________
Tkinter-discuss mailing list
Tkinter-discuss@python.org
https://mail.python.org/mailman/listinfo/tkinter-discuss

Reply via email to