1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

use underscore for italics so it doesn't collide with bold when toggling

This commit is contained in:
Bruno Windels
2019-09-06 17:50:23 +02:00
parent fe482258ac
commit 48247e66be

View File

@@ -460,7 +460,7 @@ export default class BasicMessageEditor extends React.Component {
toggleInlineFormat(range, "**");
break;
case "italics":
toggleInlineFormat(range, "*");
toggleInlineFormat(range, "_");
break;
case "strikethrough":
toggleInlineFormat(range, "<del>", "</del>");