wx Splitter Window Possible Bug

Hey all,

When I click on the url in the attached file, it opens numerous
windows with the url. I tried to circumvent this with an
event.Skip(), but to no avail.

wxbug.py (1.4 KB)

Your event is triggered on all kinds of mouse events. Mouse motion is the one responsible for the numerous windows.

You should open the url only if event.GetMouseEvent().LeftDown() is true.

Toni

ยทยทยท

On Tue, 19 Apr 2011 07:00:42 +0200, Chris Mitchell <chris.mit7@gmail.com> wrote:

Hey all,

When I click on the url in the attached file, it opens numerous
windows with the url. I tried to circumvent this with an
event.Skip(), but to no avail.