Re: Most JavaFX apps unusable on Windows 10 (combo boxes bug)

2015-09-15 Thread Guillaume Anctil
rophic bug that needs to be fixed in an emergency update. >> Many new Windows laptops have Intel GPUs with touchscreens that you can't >> disconnect, and Microsoft is pushing Windows 10 to all of them. Apparently >> no JavaFX app with a ComboBox can run on them now! >> >> --

Re: Most JavaFX apps unusable on Windows 10 (combo boxes bug)

2015-09-15 Thread Guillaume Anctil
around might be: > > java -Dglass.accessible.force=false ... > > If you can try that and let me know if it works for you (it does on our > system with the test case attached to the bug report), then I will add that > information to the JIRA. > > -- Kevin > > > >

Most JavaFX apps unusable on Windows 10 (combo boxes bug)

2015-09-14 Thread Guillaume Anctil
Hi, I recently upgraded to Windows 10 and I now have to resort to using a VM to use most of my JavaFX based apps since combo boxes causes the applications to hang when used. It seems like this bug as been reported but its cause might have been misrepresented and/or its severity misjudged. (

Resizing stage creates delays in platform.runLater pool?

2014-06-02 Thread Guillaume Anctil
Hi, I have encountered severe lag in my application when resizing the stage while an animation is running. I've made this very simple example code to reproduce the issue: https://github.com/Drakkoon/LWJGL-FX/blob/master/src/JavaFXResizeTest.java This is only a tread that acquires a semaphore,

Re: Resizing stage creates delays in platform.runLater pool?

2014-06-02 Thread Guillaume Anctil
, Richard Bair richard.b...@oracle.com wrote: My guess would be that the number of resize events is swamping the event queue. On Jun 2, 2014, at 7:20 AM, Guillaume Anctil drakk...@gmail.com wrote: Hi, I have encountered severe lag in my application when resizing the stage while an animation

Re: Resizing stage creates delays in platform.runLater pool?

2014-06-02 Thread Guillaume Anctil
with -Dprism.order=sw and see if this changes anything. -- best regards, Anthony On 6/2/2014 6:20 PM, Guillaume Anctil wrote: Hi, I have encountered severe lag in my application when resizing the stage while an animation is running. I've made this very simple example code to reproduce the issue