"SelectAll" incorrect when no FixedRows

When using a string grid with no fixed rows, procedure SelectAll does not select the last row:


SelectRows(FixedRows, RowCount - 1);

Suggesting to change to:

SelectRows(FixedRows, RowCount - FixedRows);

Best regards,
Matthias

Thanks for your feedback.
You're correct about this. This will be addressed in the next release.

Excellent - thanks!