On Mouse Button Down missing clicks

Whenever I click on the widget, onMouseButtonDown gets called and this calls a dispatcher.
But whenever I click rapidly, it sometimes misses some clicks.

I know it has nothing to do with the dispatcher itself because if I add a print between the onMouseButtonDown and the dispatcher, this print also does not always show.

The onMouseButtonDown function is an override of the default one.

Is there a way to fix this or do we have to find a workaround?

Think you have to override the OnMouseButtonDoubleClick function too and run the same function from that.

1 Like

Thank you very much, this appears to work.