nlisker

Results 233 comments of nlisker

@kevinrushforth I think that this fix can be separated from the rest of the animation issues, so I would like it reviewed earlier. The draft shows an implementation using the...

There was a continuation of the discussion here in the mailing list https://mail.openjdk.java.net/pipermail/openjfx-dev/2019-December/024314.html.

Providing a test app ```java import javafx.animation.Animation; import javafx.animation.Interpolator; import javafx.animation.RotateTransition; import javafx.animation.ScaleTransition; import javafx.application.Application; import javafx.beans.binding.Bindings; import javafx.beans.binding.DoubleBinding; import javafx.beans.binding.NumberBinding; import javafx.beans.binding.When; import javafx.beans.property.DoubleProperty; import javafx.scene.Scene; import javafx.scene.control.CheckBox; import...

I will look into the option of integrating this behavior into transitions only. While they don't have access to the way Node does it via its local transforms matrix, maybe...

I haven't looked at the code yet, but in general it's not considered a good idea to expose an object before it's instantiated. Not sure if we have a choice...

Don't worry about the CSR for now, someone will create it when the review is near completion. However, since this is an enhancement, you should discuss it first in the...

I think that a starting point would be to decide on a spec for the listener notification order: is it specified by their registration order, or that is it unspecified,...

> technically true - but the implementation was linear with a fixed sequence since-the-beginning-of-java-desktop-time (and sometimes, for good ol' beans properties, even exposed as api to access the array of...