Merge pull request #2066 from matrix-org/t3chguy/slate_cont2

Slate fixes
pull/21833/head
Matthew Hodgson 2018-07-16 21:29:20 +01:00 committed by GitHub
commit a5b932bfdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 3 deletions

View File

@ -498,8 +498,12 @@ export default class MessageComposerInput extends React.Component {
} }
} }
// when selection changes hide the autocomplete // when in autocomplete mode and selection changes hide the autocomplete.
if (!rangeEquals(this.state.editorState.selection, editorState.selection)) { // Selection changes when we enter text so use a heuristic to compare documents without doing it recursively
if (this.autocomplete.state.completionList.length >= 0 && !this.autocomplete.state.hide &&
this.state.editorState.document.text !== editorState.document.text &&
!rangeEquals(this.state.editorState.selection, editorState.selection))
{
this.autocomplete.hide(); this.autocomplete.hide();
} }
@ -1541,7 +1545,8 @@ export default class MessageComposerInput extends React.Component {
onFocus={this.onFocus} onFocus={this.onFocus}
renderNode={this.renderNode} renderNode={this.renderNode}
renderMark={this.renderMark} renderMark={this.renderMark}
spellCheck={true} // disable spell check for the placeholder because browsers don't like "unencrypted"
spellCheck={!this.state.editorState.document.isEmpty}
/> />
</div> </div>
</div> </div>