TreeViewItem not receiving mouse clicks from custom component

Hi,

Since the latest public release (v6.1.3), the mouse actions in a TreeViewItem’s custom component have stopped working. In my component I am calling:
getParentComponent()->mouseDown(event.getEventRelativeTo(getParentComponent()));
Which worked previously to allow the TreeViewItem to consume the mouse events.

I notice that the issue is with juce_TreeView, Line 338: newComp->addMouseListener (this, false); Was changed from true to false recently, which reverting seems to solve my issue.

Is there another way for the component to pass mouse events up to the TreeViewItem? Am I doing this incorrectly?

Thanks,
Chris