|
|
|
@ -44,19 +44,20 @@ class QuillController extends ChangeNotifier { |
|
|
|
|
|
|
|
|
|
void undo() { |
|
|
|
|
Tuple2 tup = document.undo(); |
|
|
|
|
if (tup.item1){ |
|
|
|
|
if (tup.item1) { |
|
|
|
|
_handleHistoryChange(tup.item2); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void _handleHistoryChange(int len) { |
|
|
|
|
if (len != 0) { |
|
|
|
|
// if (this.selection.extentOffset >= document.length) { |
|
|
|
|
// if (this.selection.extentOffset >= document.length) { |
|
|
|
|
// // cursor exceeds the length of document, position it in the end |
|
|
|
|
// updateSelection( |
|
|
|
|
// TextSelection.collapsed(offset: document.length), ChangeSource.LOCAL); |
|
|
|
|
updateSelection( |
|
|
|
|
TextSelection.collapsed(offset: this.selection.baseOffset + len), ChangeSource.LOCAL); |
|
|
|
|
TextSelection.collapsed(offset: this.selection.baseOffset + len), |
|
|
|
|
ChangeSource.LOCAL); |
|
|
|
|
} else { |
|
|
|
|
// no need to move cursor |
|
|
|
|
notifyListeners(); |
|
|
|
@ -65,7 +66,7 @@ class QuillController extends ChangeNotifier { |
|
|
|
|
|
|
|
|
|
void redo() { |
|
|
|
|
Tuple2 tup = document.redo(); |
|
|
|
|
if (tup.item1){ |
|
|
|
|
if (tup.item1) { |
|
|
|
|
_handleHistoryChange(tup.item2); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|