bobbylight

Results 149 comments of bobbylight

I see the following problem when using the down arrow key to move between those lines - the top row of pixels on the newly-selected line is not rendered I...

Can you give an example of what you're trying to accomplish but cannot? ErrorStrip does work, an example of its use is in [RText](https://github.com/bobbylight/RText). It does take up horizontal space...

Unfortunately I have no access to a Ubuntu box, so pull requests are welcome!

RoundRobinAutoCompletion was actually contributed by someone else, and I don't use it. If you want this fixed quicker, pull requests are welcome!

Thanks, I'll take a look.

Can you provide [an SSCCE](http://sscce.org/) demonstrating the behavior (e.g. a standalone class with a `main` method)? I'm not a javafx guy, so if there's extra stuff you need to do...

This works properly with the demo included with RSTALanguageSupport. Can you provide a small example program that shows this problem? Also include the LookAndFeel and any UI customizations you've made.

This does seem wrong, but IIRC this is called in a `DocumentListener#insertUpdate()` callback that occurs before the caret is notified and has its position updated. Thus `tc.getCaretPosition()` still returns the...

Yeah, relying on the order of the listeners is pretty bad. I'll take a look at fixing things, just have to have a think about the best way to do...

Since there is no HIDE event (as in `java.util.EventObject` subclass), how are you accomplishing what you describe? Are you overriding the `AutoCompletion.hidePopupWindow()` method? If so, you can extend `RoundRobinAutoCompletion` and...