fix: Double click to select text sometimes doesn't work. (#2086)

pull/2089/head^2 v10.1.6
Felix Lee 8 months ago committed by GitHub
parent 1013d03ed9
commit 0a971932cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      lib/src/editor/editor.dart

@ -1102,7 +1102,7 @@ class RenderEditor extends RenderEditableContainerBox
TextSelection selectWordAtPosition(TextPosition position) {
final word = getWordBoundary(position);
// When long-pressing past the end of the text, we want a collapsed cursor.
if (position.offset >= word.end) {
if (position.offset > word.end) {
return TextSelection.fromPosition(position);
}
return TextSelection(baseOffset: word.start, extentOffset: word.end);

Loading…
Cancel
Save