I am using MonoMac/C# and have an NSOutlineView where some of the items are editable. So if you select an item and then click it again (slow double click) the NSTextField of the row enter edit mode. My problem is that this happens even if you right-click the item. You can even mix left-clicks and right-clicks to enter edit mode.
This is pretty annoying since you would sometime select a row and then right-click it, then a second after the context menu appears, the row enter edit mode.
Is there a way to restrict either the NSOutlineView or the NSTextFields inside it, to only enter edit mode using the left mouse button (in addition to pressing Enter while the row is selected)?
Thanks!