In TElTreeView.MouseDown there is following line:
if (Item <> nil) and (((ItemPart <> ipInside) and (ItemPart <> ipOutside)) or FRowSelect) then
The part
(ItemPart <> ipInside)
causes the problem that a right-click only works if the mouse is not above the first column.
Any reason for this or it is possible to remove (ItemPart <> ipInside)?
Comments