In our project, the Tree node item has its own icon and status to show a dropdown menu .
When user hover the node, the icon shows up and when user click it, it will show the dropdown menu.
But we found that when user click the icon for the first time, the whole tree will refresh itself, and the hover icon will disappear. And user will have to move the mouse out and back to click the icon again to make the dropdown show up.

We have tried to set the onClick method to prevent the selection event propagating but it doesn't work...
After debugging, we found the first click trigger the [handleSelect](https://github.com/salesforce/design-system-react/blob/master/components/tree/index.jsx#L205) event of the tree. But it's weird that the event type is onFocus while the property fromFocus is undefined.

So we are thinking can we introduce a new property to prevent or configure the onFocus event so that the tree will not refresh. This will help a lot on some complicated tree, whose tree item has its own status.
Thanks!
In our project, the Tree node item has its own icon and status to show a dropdown menu .
When user hover the node, the icon shows up and when user click it, it will show the dropdown menu.
But we found that when user click the icon for the first time, the whole tree will refresh itself, and the hover icon will disappear. And user will have to move the mouse out and back to click the icon again to make the dropdown show up.

We have tried to set the
onClickmethod to prevent the selection event propagating but it doesn't work...After debugging, we found the first click trigger the
[handleSelect](https://github.com/salesforce/design-system-react/blob/master/components/tree/index.jsx#L205)event of the tree. But it's weird that the event type isonFocuswhile the propertyfromFocusisundefined.So we are thinking can we introduce a new property to prevent or configure the
onFocusevent so that the tree will not refresh. This will help a lot on some complicated tree, whose tree item has its own status.Thanks!