Re: RFR: 8349105: Pagination: exception initializing in a background thread [v5]

2025-02-14 Thread Andy Goryachev
On Fri, 14 Feb 2025 18:18:59 GMT, Kevin Rushforth wrote: > Can you merge master so this will be realized? done. - PR Comment: https://git.openjdk.org/jfx/pull/1698#issuecomment-2659998222

Re: RFR: 8349105: Pagination: exception initializing in a background thread [v5]

2025-02-14 Thread Kevin Rushforth
On Tue, 11 Feb 2025 23:33:42 GMT, Andy Goryachev wrote: >> ## Root Cause >> Animation gets started in a background thread, which causes the animation >> handler to run in the FX application thread, thus creating simultaneous >> access to the control's fields (list of children in this case). >>

Re: RFR: 8349105: Pagination: exception initializing in a background thread [v5]

2025-02-11 Thread Andy Goryachev
> ## Root Cause > Animation gets started in a background thread, which causes the animation > handler to run in the FX application thread, thus creating simultaneous > access to the control's fields (list of children in this case). > > ## Solution > Postpone the animation unless running in the F