[8u60, 9] Review request for RT-46189 [WebView] NPE when running WebEngine without WebView

2015-06-09 Thread Anton Nashatyrev
Hi Anton, could you please review the fix: https://javafx-jira.kenai.com/browse/RT-46189 http://cr.openjdk.java.net/~anashaty/RT-46189/webrev.00/ Thanks! Anton.

[8u60, 9] Review request for RT-40743: [WebView] IllegalArgumentException when dragging in google maps

2015-05-29 Thread Anton Nashatyrev
Hi Anton, All can you please review the fix: https://javafx-jira.kenai.com/browse/RT-40743 http://cr.openjdk.java.net/~anashaty/RT-40743/webrev.00/ Thanks! Anton.

[8u60, 9] Review request for RT-46101: [WebView] Crash while content selection on yahoo.com

2015-05-28 Thread Anton Nashatyrev
Hi Anton, All can you please review the fix: https://javafx-jira.kenai.com/browse/RT-46101 http://cr.openjdk.java.net/~anashaty/RT-46101/webrev.00/ Thanks! Anton.

[8u60, 9] Review request for RT-40498: WebView horizontal scrolling using mouse or touch device causes rendering artifacts

2015-05-28 Thread Anton Nashatyrev
Hi Anton, All can you please review the fix: https://javafx-jira.kenai.com/browse/RT-40498 http://cr.openjdk.java.net/~anashaty/RT-40498/webrev.00/ Thanks! Anton.

[8u40] Review request: RT-32986: JVM crash while debugging JavaScript in WebView browser

2014-12-04 Thread Anton Nashatyrev
Hello Anton, Leonid, Kevin could you please review the following fix: Bug: https://javafx-jira.kenai.com/browse/RT-39562 Webrev: http://cr.openjdk.java.net/~anashaty/RT-39562/webrev.00/ Thanks! Anton.

[8u40] Review request: RT-32986: JVM crash while debugging JavaScript in WebView browser

2014-11-28 Thread Anton Nashatyrev
Hello Anton, Leonid could you please review the following fix: Bug: https://javafx-jira.kenai.com/browse/RT-32986 Webrev: http://cr.openjdk.java.net/~anashaty/RT-32986/webrev.00/ Thanks! Anton.

Re: [8u] Review request: RT-37884: [WebView] Java Logger settings corrupt webview

2014-10-16 Thread Anton Nashatyrev
Hello, any volunteers ? (the fix is pretty simple) Thanks! Anton. On 26.08.2014 19:45, anton nashatyrev wrote: Hello, could you please review the fix: https://javafx-jira.kenai.com/browse/RT-37884 Thank you! Anton.

[8u] Review request: RT-37884: [WebView] Java Logger settings corrupt webview

2014-08-26 Thread anton nashatyrev
Hello, could you please review the fix: https://javafx-jira.kenai.com/browse/RT-37884 Thank you! Anton.

[8u] Review request: RT-38290: [WebView] HTML canvas clip() functionality broken

2014-08-20 Thread anton nashatyrev
Hello, could you please review the fix for https://javafx-jira.kenai.com/browse/RT-38290 ? Thank you! Anton.

Re: JavaFx roadmap?

2014-08-13 Thread anton nashatyrev
Hello Adam, - How will WebView ever keep up with the constantly evolving HTML5 platform? Currently the merge with the WebKit trunk is in progress. I believe this process will be repeated on a regular basis. Regards, Anton. On 12.08.2014 1:08, Adam Granger wrote: The official java fx roadmap

[8u] Review request: RT-37012: [media] Native memory leaking until nio.Buffers are GC'ed

2014-05-08 Thread anton nashatyrev
Hello, could you please review the following fix: Webrev: http://cr.openjdk.java.net/~anashaty/RT-37012/webrev.00/ Issue: https://javafx-jira.kenai.com/browse/RT-37012 Thank you! Anton.

[8u] Review request: RT-37010: [media] Long mp4 files (duration > 12hrs) are rejected by the media player.

2014-05-07 Thread anton nashatyrev
Hello, could you please review the following fix: Webrev: http://cr.openjdk.java.net/~anashaty/RT-37010/8/webrev.00/ Issue: https://javafx-jira.kenai.com/browse/RT-37010 Thank yo

[8u] Review request: RT-36551: [Media] Mac: Crash in media disposer thread

2014-04-16 Thread anton nashatyrev
Hello, could you please review the following fix: Webrev: http://cr.openjdk.java.net/%7Eanashaty/RT-36551/8/webrev.00/ Issue: https://javafx-jira.kenai.com/browse/RT-36551 Thank you! Anton.

Re: Adding GStreamer plugins

2014-03-24 Thread anton nashatyrev
Hi Michael, On 24.03.2014 4:31, Michael Berry wrote: Hi all, I'm now a bit further along with this, though struggling to get the matroska plugin to compile (getting a bunch of unresolved external symbol errors for functions it uses in glib - not entirely sure why at the moment, as I said C is n

[8u] Review request: RT-34950: [Media] JavaFx Player on MAC Crashes Application When Playing Specific Video

2014-03-21 Thread anton nashatyrev
Hello, could you please review the following fix: Webrev: http://cr.openjdk.java.net/~anashaty/RT-34950/webrev.00/ Issue: https://javafx-jira.kenai.com/browse/RT-34950 Thank you! Anton.

Re: OpenJFX Lambda Day, Feb 25th 2014

2014-02-18 Thread anton nashatyrev
Hello All, I'd like to add my 2 cents to lambdafication of JavaFX: Recently I was working on a fix in the JFX and used convenient JFX beans feature - 'select binding': javafx.beans.binding.Bindings.select*(ObservableValue root, java.lang.String... steps) I.e. to select some cha

Re: Event for when a node gets shown on screen

2013-10-02 Thread anton nashatyrev
Hi Pedro, that binding is 'watching' for the whole chain of properties and is changed to 'true' only when the node is attached to the scene, the scene is attached to the window and the window isShowing() = true. Vice verse it changed to 'false' if any of the above conditions becomes false,

Re: Event for when a node gets shown on screen

2013-10-01 Thread anton nashatyrev
Hi Pedro, you may try the following code: Bindings.select(node.sceneProperty(), "window", "showing").addListener(new ChangeListener() ); BTW, this way you could add the listener even when the node is not yet attached to any scene or window. Regards, Anton. On 29.09.2013 18:57, Ped