EventType.MouseDown not triggered when clicking on a FreeMoveHandle

Hi, trying to make a polygon editor in onscenegui and noticed that the test

if(e.type == EventType.mouseDown &&
e.button == 0)

isnt triggered when clicking on a freemovehandle. Is this expected behavior or a bug?

You can get problems with click events if the distance between the camera and the object being clicked is too big. It uses a raycast of some sort and it has a distance limit on it. Try moving your camera closer and if it works you know that this is the cause.