Merge pull request #3842 from matrix-org/t3chguy/fix_isModified
Fix timing of when Composer considers itself to be modified
This commit is contained in:
commit
64c4677699
1 changed files with 1 additions and 3 deletions
|
@ -126,6 +126,7 @@ export default class BasicMessageEditor extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
_updateEditorState = (selection, inputType, diff) => {
|
_updateEditorState = (selection, inputType, diff) => {
|
||||||
|
this._modifiedFlag = true;
|
||||||
renderModel(this._editorRef, this.props.model);
|
renderModel(this._editorRef, this.props.model);
|
||||||
if (selection) { // set the caret/selection
|
if (selection) { // set the caret/selection
|
||||||
try {
|
try {
|
||||||
|
@ -237,7 +238,6 @@ export default class BasicMessageEditor extends React.Component {
|
||||||
const text = event.clipboardData.getData("text/plain");
|
const text = event.clipboardData.getData("text/plain");
|
||||||
parts = parsePlainTextMessage(text, partCreator);
|
parts = parsePlainTextMessage(text, partCreator);
|
||||||
}
|
}
|
||||||
this._modifiedFlag = true;
|
|
||||||
const range = getRangeForSelection(this._editorRef, model, document.getSelection());
|
const range = getRangeForSelection(this._editorRef, model, document.getSelection());
|
||||||
replaceRangeAndMoveCaret(range, parts);
|
replaceRangeAndMoveCaret(range, parts);
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
@ -248,7 +248,6 @@ export default class BasicMessageEditor extends React.Component {
|
||||||
if (this._isIMEComposing) {
|
if (this._isIMEComposing) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this._modifiedFlag = true;
|
|
||||||
const sel = document.getSelection();
|
const sel = document.getSelection();
|
||||||
const {caret, text} = getCaretOffsetAndText(this._editorRef, sel);
|
const {caret, text} = getCaretOffsetAndText(this._editorRef, sel);
|
||||||
this.props.model.update(text, event.inputType, caret);
|
this.props.model.update(text, event.inputType, caret);
|
||||||
|
@ -260,7 +259,6 @@ export default class BasicMessageEditor extends React.Component {
|
||||||
const newText = text.substr(0, caret.offset) + textToInsert + text.substr(caret.offset);
|
const newText = text.substr(0, caret.offset) + textToInsert + text.substr(caret.offset);
|
||||||
caret.offset += textToInsert.length;
|
caret.offset += textToInsert.length;
|
||||||
this.props.model.update(newText, inputType, caret);
|
this.props.model.update(newText, inputType, caret);
|
||||||
this._modifiedFlag = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// this is used later to see if we need to recalculate the caret
|
// this is used later to see if we need to recalculate the caret
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue