How to implement on double left button press

Hi, in the official Point Picker example, onRightButtonPress event is used :
renderWindow.getInteractor().onRightButtonPress((callData) => {...

Is there a way to listen to a double left button press?

Thank you

You can either listen to the dblclick event directly from interactor.getView().getCanvas(), or write your own double-click handler using onLeftButtonPress.

2 Likes

Thank you!