Re: Missed pulse?

2013-08-01 Thread Diego Cirujano-Cuesta
...@gmail.com To: Diego Cirujano-Cuesta diego.cirujano-cue...@zeiss.com Cc: openjfx-dev@openjdk.java.net openjfx-dev@openjdk.java.net Date: 31.07.2013 16:42 Subject:Re: Missed pulse? Interesting. The problem outlined in RT-31025 does involve GridPane with ColumnConstraints. I

Re: Missed pulse?

2013-07-31 Thread Werner Lehmann
Easy trap with invalidation listeners. If you don't get the property value after invalidation, the property remains invalidated and subsequent changes won't trigger another invalidation. To fix this, simply get the value (for nothing), or switch to change listeners... You probably know this

Re: Missed pulse?

2013-07-31 Thread Scott Palmer
Interesting. The problem outlined in RT-31025 does involve GridPane with ColumnConstraints. I will try to dig up the code. Scott On Wed, Jul 31, 2013 at 4:47 AM, Diego Cirujano-Cuesta diego.cirujano-cue...@zeiss.com wrote: Hi Scott, I have a component quite similar to the one you

Re: Missed pulse?

2013-07-31 Thread Scott Palmer
Here is a test case that reproduces some problems. Compare the layout in the bottom right in JavaFX 2.x (7u25) vs. JavaFX 8.0-b100. You will have to resize the window and scroll. JavaFX 8 doesn't do a very good job. Note also how sluggish JavaFX 8 is when you try to resize the splitter above

Re: Missed pulse?

2013-07-31 Thread Richard Bair
Jim just fixed RT-30223, RT-30826, RT-31044 - Canvas clears clip on Windows/D3D. If you are on Windows and seeing things are drawing that should be clipped, it might be related to one of these fixes. He's trying to get the fix into the 2.2 line as well as in 8. I only considered just now that

Missed pulse?

2013-07-30 Thread Scott Palmer
(I'm talking JavaFX2.x, but this happens in 8 as well.) In my application I occasionally see a situation where the rendering doesn't jive with what it should. For example I have implemented my own scroll pane (ironically enough I did this to workaround manifestations of a problem similar to what