FixedRowHeightLayout::GetRowAt can return incorrectly
Brought to you by:
agaman
If e.g. clicking in a column header, point.Y can be negative, in which case it will return 0 incorrectly to GetNodeControlInfoAt method.
Suggest fix:
return point.Y >= 0 ? point.Y / _rowHeight : -1;
All the best, Harvey