Fix Undo throw Offset cannot be negative

pull/13/head
singerdmx 4 years ago
parent 1f333f4d96
commit 27ed93970f
  1. 14
      lib/widgets/controller.dart

@ -44,13 +44,23 @@ class QuillController extends ChangeNotifier {
void undo() {
if (document.undo()) {
notifyListeners();
if (this.selection.extentOffset >= document.length) {
updateSelection(TextSelection.collapsed(offset: document.length),
ChangeSource.LOCAL);
} else {
notifyListeners();
}
}
}
void redo() {
if (document.redo()) {
notifyListeners();
if (this.selection.extentOffset >= document.length) {
updateSelection(TextSelection.collapsed(offset: document.length),
ChangeSource.LOCAL);
} else {
notifyListeners();
}
}
}

Loading…
Cancel
Save