Skip to content

Commit 72f7dac

Browse files
Yxwwwrowanc1
authored andcommitted
Remove doc.eq check for selection plugin
1 parent ba94ed7 commit 72f7dac

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/prosemirror/plugins/selection.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ class SelectionControl {
3232

3333
update(view: EditorView, lastState: EditorState | null) {
3434
const { state } = view;
35-
// Don't do anything if the document/selection didn't change
36-
if (lastState && lastState.doc.eq(state.doc) && lastState.selection.eq?.(state.selection))
37-
return;
35+
if (lastState && lastState.selection.eq?.(state.selection)) return;
3836

3937
// Hide the tooltip if the selection is empty
4038
if (state.selection.empty) {

0 commit comments

Comments
 (0)