Jurgen
Jurgen
This came about while investigating a memory leak. Currently it FAILS a number of tests with Java 8 but only `org.fxmisc.richtext.style.StylingTests` with Java 9. (Strangely though simulating the StylingTests manually...
Currently RichTextFX has a minimum requirement of Java 8. I'd greatly appreciate having community feedback with regards to moving to Java 11. If nobody objects then version 0.10.7 will be...
The current implementation has three problems: 1. It fails when a column has an alias 2. It builds the whole SQL column string before comparing 3. It doesn't seem very...
Hi Andy, just wanted to bring the [RichTextFX project](https://github.com/FXMisc/RichTextFX) to your attention in terms of being able to handle very large text models.
Refactored `TextFlowExt` to prepare for future API proposed by JavaFX PR openjdk/jfx#1596 by renaming and adding methods in `TextFlowLayout` to match those proposed for `LayoutInfo`. When the proposed API is...
The two _MqttPublish_ casts in the following piece of code should be changed to _MqttPersistable_ otherwise subscribe and unsubsribed messages throw ClassCastException https://github.com/eclipse-paho/paho.mqtt.java/blob/9c742c1d83e71132452e08d325e5a90d1631c302/org.eclipse.paho.mqttv5.client/src/main/java/org/eclipse/paho/mqttv5/client/internal/ClientState.java#L616-L623
Addresses #1273 where styles are not always being applied. To apply styling to particular portion of text we need to have a position of where that text is. The trouble...
This adds the ability to refresh a Cell without updating it's item. This is needed in situations where the context the item is in changes the way it is displayed,...
This PR adds a new VirtualFlow construction method that takes a BiFunction parameter so that the item index is available for the Cell factory. Issue FXMisc/RichTextFX#1273 refers.