Jump to content

Marlon Nardi

Members
  • Content Count

    3
  • Joined

  • Last visited

Everything posted by Marlon Nardi

  1. Marlon Nardi

    java.lang.indexoutofboundsexception

    https://github.com/yangyxd/FMXUI/issues/67#issuecomment-2417073422
  2. Marlon Nardi

    Delphi 12.2 TMEMO - indexoutofbounds

    In practice procedure TTextServiceAndroid.InternalUpdateSelection; var SelStart, SelEnd: Integer; begin if FTextView = nil then Exit; CalculateSelectionBounds(SelStart, SelEnd); SelStart := Min(SelStart, JCharSequenceToStr(FTextView.getText).length); SelEnd := Min(SelEnd, JCharSequenceToStr(FTextView.getText).length); if SelEnd - SelStart > 0 then FTextView.setSelection(SelStart, SelEnd) else FTextView.setSelection(SelStart); end; worked in all tests
  3. Unbelievable, I thought that after updating to Delphi 12.2 this problem would be solved, and yet it continues.
×