John Hendrikx

Results 218 comments of John Hendrikx

It works the same way, it uses Canvas, which is buggy at the moment. It is improving in JavaFX 8, which is why I gave up on the 2.x line....

There have been many bugs with Canvas, and there still are even in JavaFX 8. In JavaFX 2 I never managed to get it working fast or stable enough --...

WritableImage is a JavaFX component. The NPE occurs in JavaFX code. I think you should report it to them.

I just configured a custom `ObjectMapper` for serializing records: private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper() .setVisibility(PropertyAccessor.GETTER, Visibility.NONE) .setVisibility(PropertyAccessor.FIELD, Visibility.ANY) .registerModule(new JavaTimeModule()) .registerModule(new Jdk8Module()) .registerModule(new ParameterNamesModule(Mode.PROPERTIES)); With this setup...

> That workaround + `2.15.0-rc2` = `{}` > > 😬 Is that a cryptic way of saying that limiting visibility to fields only for records breaks in 2.15.0-rc2 ?

I was looking into a better fix for this, and realized that `idProp` probably should just be `null` for records. When I use the `ObjectIdGenerators.StringIdGenerator` (even though I really don't...

> Do you have any remarks? I personally don't launch build tools from the IDE (neither Gradle, nor Maven) but only use such tools to import projects; after the import...

> Just to complete the picture, I also want to explain why I am strongly against making `focusVisible` writable. I don't disagree, I'm just a bit on the fence if...

> > Also something that just occurred to me, but perhaps I'm late to the party; with the current API being on `Node` you could call `requestFocusTraversal` on basically any...

> In that case, you are right. I don't have a strong opinion as I am not an advanced user of focus. The current behavior is good enough for me....