JDK-8100261 : nodes should not be re-picked when mouse is off the Scene
Type:Sub-task
Component:javafx
Priority:P4
Status:Resolved
Resolution:Fixed
Submitted:2009-03-31
Updated:2015-06-16
Resolved:2009-03-31
The Version table provides details related to the release that this issue/RFE will be addressed.
Unresolved : Release in which this issue/RFE will be addressed. Resolved: Release in which this issue/RFE has been resolved. Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.
It looks like detecting a mouse exit event and clearing lastEvent would fix this:
if (e.impl_EventID == MouseEventID.EXITED) {
lastEvent = null;
} else {
lastEvent = e;
}
Comments
the fix is checked into workspace: changeset: 6f1088313ab7