-
Notifications
You must be signed in to change notification settings - Fork 237
New issue
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
Wrong character insertion index on multi-line paragraphs when caret positioned at end of line-wrap #423
Comments
This also occurs when pressing
where |
There's another situation in which this issue occurs, which points to
Given the above text, where |
downLines
bug in multi-line paragraph
I wrote a TestFX test for this using |
Although the caret should be positioned at Also, the caret is in the correct location (the end of the second line), even if it does not visually appear so:
I think the real problem here is that pressing @JFormDesigner your thoughts? |
fixed caret positioning in wrapped lines (issue #423)
In a multi-line paragraph of at least 3 lines (above diagram), where
|
represents the initial caret position, it is expected that pressingDOWN
arrow key will move caret to^
, but it actually moves it to*
.Additionally, pressing
UP
arrow key will not move the caret at all. Once one pressesLEFT
orRIGHT
arrow key (i.e. press left, then right to reposition the caret at*
),UP
works again.Run the code to reproduce the bug.
The text was updated successfully, but these errors were encountered: