From ce7152b6740058b45c830b65e00a6ca5097040df Mon Sep 17 00:00:00 2001 From: AtlasAutocode Date: Tue, 16 Jul 2024 08:13:26 -0600 Subject: [PATCH] Remove overridable action from PageIntent processing --- lib/src/widgets/raw_editor/raw_editor_state.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/src/widgets/raw_editor/raw_editor_state.dart b/lib/src/widgets/raw_editor/raw_editor_state.dart index 01e328b0..5b9418dc 100644 --- a/lib/src/widgets/raw_editor/raw_editor_state.dart +++ b/lib/src/widgets/raw_editor/raw_editor_state.dart @@ -1726,8 +1726,7 @@ class QuillRawEditorState extends EditorState ScrollToDocumentBoundaryIntent: NavigateToDocumentBoundaryAction(this), // Paging and scrolling - ExtendSelectionVerticallyToAdjacentPageIntent: - _makeOverridable(_adjacentPageAction), + ExtendSelectionVerticallyToAdjacentPageIntent: _adjacentPageAction, ScrollIntent: QuillEditorScrollAction(this), };