The 'ENTER' key of the virtual keyboard does not insert a new line while editing with the HTMLEditor.
On Windows, this is solved by changing
"key = new KeyCodeKey("enter", "\n", KeyCode.ENTER);"
by
key = new KeyCodeKey("enter", "\r", KeyCode.ENTER); // \n replaced by \r
in FXVKSkin.loadBoard(String type)
On Windows, this is solved by changing
"key = new KeyCodeKey("enter", "\n", KeyCode.ENTER);"
by
key = new KeyCodeKey("enter", "\r", KeyCode.ENTER); // \n replaced by \r
in FXVKSkin.loadBoard(String type)
- relates to
-
JDK-8376737 ☂ Virtual Keyboard Issues
-
- Open
-