You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-08 21:42:24 +03:00
Fix issue where the cursor is put at the start of selected history item
Leading to strange behaviour when selecting all and deleting it. Fixes https://github.com/vector-im/riot-web/issues/4450
This commit is contained in:
@@ -568,6 +568,14 @@ export default class MessageComposerInput extends React.Component {
|
|||||||
'insert-characters',
|
'insert-characters',
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Move selection to the end of the selected history
|
||||||
|
let newSelection = SelectionState.createEmpty(newContent.getLastBlock().getKey());
|
||||||
|
newSelection = newSelection.merge({
|
||||||
|
focusOffset: newContent.getLastBlock().getLength(),
|
||||||
|
anchorOffset: newContent.getLastBlock().getLength(),
|
||||||
|
});
|
||||||
|
editorState = EditorState.forceSelection(editorState, newSelection);
|
||||||
|
|
||||||
this.setState({editorState});
|
this.setState({editorState});
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user