Problem with mousedown event in the lastest version of TMS TAdvStringGrid.

I use the lastest version of TMS TAdvStringGrid.
When I click on same cell and TAdvStringGrid.CanEdit = false, the mousedown event sometimes can't be triggered.
I saw the source code in Advgrid.pas, there are some new codes in the lastest version at line 43395 (TAdvStringGrid.WMLButtonDown):

// click on same cell and canedit = false
if not CanEdit and (X = Col) and (Y = Row) then
begin
DoClickCell(Y,X);
Exit;
end;

If I remove these codes, the mousedown event will be triggered normally.
Please help me to solve this problem. Thank you!

Problem was traced & solved.
Next update will address this.

This feature was implemented.