You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-11 20:22:36 +03:00
add heuristic to compare documents to prevent autocomplete flicker
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
@@ -498,8 +498,10 @@ export default class MessageComposerInput extends React.Component {
|
||||
}
|
||||
}
|
||||
|
||||
// when selection changes hide the autocomplete
|
||||
if (!rangeEquals(this.state.editorState.selection, editorState.selection)) {
|
||||
// when selection changes hide the autocomplete.
|
||||
// Selection changes when we enter text so use a heuristic to compare documents without doing it recursively
|
||||
const documentChanged = this.state.editorState.document.text !== editorState.document.text;
|
||||
if (!documentChanged && !rangeEquals(this.state.editorState.selection, editorState.selection)) {
|
||||
this.autocomplete.hide();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user