We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I use the Home key, the caret moves to the end of the line, and the End key moves it to the start of the line.
It looks as if the problem is in RichTextAreaSkin.java where the inputmap entries are set incorrectly:
entry( new KeyCodeCombination(HOME, SHIFT_ANY), e -> ACTION_CMD_FACTORY.caretMove(Direction.FORWARD, e.isShiftDown(), false, true))
and
entry( new KeyCodeCombination(END, SHIFT_ANY), e -> ACTION_CMD_FACTORY.caretMove(Direction.BACK, e.isShiftDown(), false, true))
The text was updated successfully, but these errors were encountered:
jperedadnr
Successfully merging a pull request may close this issue.
When I use the Home key, the caret moves to the end of the line, and the End key moves it to the start of the line.
It looks as if the problem is in RichTextAreaSkin.java where the inputmap entries are set incorrectly:
entry( new KeyCodeCombination(HOME, SHIFT_ANY), e -> ACTION_CMD_FACTORY.caretMove(Direction.FORWARD, e.isShiftDown(), false, true))
and
entry( new KeyCodeCombination(END, SHIFT_ANY), e -> ACTION_CMD_FACTORY.caretMove(Direction.BACK, e.isShiftDown(), false, true))
The text was updated successfully, but these errors were encountered: