-
Notifications
You must be signed in to change notification settings - Fork 236
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
CodeArea caretBounds graphic bug #812
Comments
@nashousni could you please provide more detailed steps and code as I can't replicate the problem with what you have provided so far. Also with which OS and Java version are you experiencing this ? |
@Jugen the issue often occurs within a long script . |
@nashousni thanks for the details, could you please try and see if this happens on Windows - then we'll know if it's got something to do with the OS. If it does happen on Windows then could you please tell me exactly what it is that you do to reproduce the problem - thanks. |
@Jugen the same bug also happens on Windows. |
Fixed in PR #819 |
Using CodeArea getCaretBounds() method within big scripts makes a blue selection appear.
for example:
The following code:
codeArea.textProperty().addListener((observable, oldvalue, newvalue) -> {
codeArea.getCaretBounds().ifPresent(caretBounds -> {
});
});
creates this blue highlight:
This issue appears in the version 0.9.3 but not in the 0.9.2 version
The text was updated successfully, but these errors were encountered: