Set flag before mutating on cut too
parent
2ed5d89c9f
commit
277f107924
|
@ -210,8 +210,8 @@ export default class BasicMessageEditor extends React.Component {
|
||||||
event.clipboardData.setData("application/x-riot-composer", JSON.stringify(selectedParts));
|
event.clipboardData.setData("application/x-riot-composer", JSON.stringify(selectedParts));
|
||||||
if (type === "cut") {
|
if (type === "cut") {
|
||||||
// Remove the text, updating the model as appropriate
|
// Remove the text, updating the model as appropriate
|
||||||
replaceRangeAndMoveCaret(range, []);
|
|
||||||
this._modifiedFlag = true;
|
this._modifiedFlag = true;
|
||||||
|
replaceRangeAndMoveCaret(range, []);
|
||||||
}
|
}
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue