We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba4c25e commit 4b46df2Copy full SHA for 4b46df2
lib/src/widgets/editor.dart
@@ -1607,8 +1607,7 @@ class RenderEditor extends RenderEditableContainerBox
1607
}
1608
1609
1610
-class QuillVerticalCaretMovementRun
1611
- extends BidirectionalIterator<TextPosition> {
+class QuillVerticalCaretMovementRun extends Iterator<TextPosition> {
1612
QuillVerticalCaretMovementRun._(
1613
this._editor,
1614
this._currentTextPosition,
@@ -1629,7 +1628,6 @@ class QuillVerticalCaretMovementRun
1629
1628
return true;
1630
1631
1632
- @override
1633
bool movePrevious() {
1634
_currentTextPosition = _editor.getTextPositionAbove(_currentTextPosition);
1635
0 commit comments