An attemp to fix the text selection bug (#1643)

pull/1710/head
Ellet Hnewa 1 year ago committed by GitHub
parent 0b7bdf6832
commit 14ffc60888
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      lib/src/models/documents/document.dart
  2. 0
      lib/src/widgets/quill/C
  3. 9
      lib/src/widgets/quill/quill_controller.dart

@ -219,7 +219,7 @@ class Document {
if (res.node is Line) {
return res;
}
final block = res.node as Block;
final block = res.node as Block; // TODO: Can be nullable, handle this case
return block.queryChild(res.offset, true);
}

@ -251,8 +251,13 @@ class QuillController extends ChangeNotifier {
// updateSelection(
// TextSelection.collapsed(offset: document.length), ChangeSource.LOCAL);
updateSelection(
TextSelection.collapsed(offset: selection.baseOffset + len),
ChangeSource.local);
(selection.baseOffset + len) > 0
? TextSelection.collapsed(
offset: selection.baseOffset + len,
)
: TextSelection.collapsed(offset: document.length),
ChangeSource.local,
);
} else {
// no need to move cursor
notifyListeners();

Loading…
Cancel
Save