File tree 1 file changed +3
-3
lines changed
packages/core/src/extensions/LinkToolbar
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ class LinkToolbarView implements PluginView {
52
52
53
53
this . startMenuUpdateTimer = ( ) => {
54
54
this . menuUpdateTimer = setTimeout ( ( ) => {
55
- this . update ( this . pmView ) ;
55
+ this . update ( this . pmView , undefined , true ) ;
56
56
} , 250 ) ;
57
57
} ;
58
58
@@ -190,7 +190,7 @@ class LinkToolbarView implements PluginView {
190
190
}
191
191
}
192
192
193
- update ( view : EditorView , oldState ?: EditorState ) {
193
+ update ( view : EditorView , oldState ?: EditorState , fromMouseOver = false ) {
194
194
const { state } = view ;
195
195
196
196
const isSame =
@@ -235,7 +235,7 @@ class LinkToolbarView implements PluginView {
235
235
}
236
236
}
237
237
238
- if ( this . mouseHoveredLinkMark ) {
238
+ if ( this . mouseHoveredLinkMark && fromMouseOver ) {
239
239
this . linkMark = this . mouseHoveredLinkMark ;
240
240
this . linkMarkRange = this . mouseHoveredLinkMarkRange ;
241
241
}
You can’t perform that action at this time.
0 commit comments