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
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.
Thank you!