We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 162e622 commit 3eecf16Copy full SHA for 3eecf16
1 file changed
src/main/java/org/markdownwriterfx/util/Utils.java
@@ -155,9 +155,9 @@ public static void fixSpaceAfterDeadKey(Scene scene) {
155
public void handle(KeyEvent e) {
156
String character = e.getCharacter();
157
if(" ".equals(character) &&
158
- ("´".equals(lastCharacter) ||
159
- "`".equals(lastCharacter) ||
160
- "^".equals(lastCharacter)))
+ ("\u00B4".equals(lastCharacter) || // Acute accent
+ "`".equals(lastCharacter) || // Grave accent
+ "^".equals(lastCharacter))) // Circumflex accent
161
{
162
// avoid that the space character is inserted
163
e.consume();
0 commit comments