Re[2]: JDK-8220272: Found the problem + possible fix

2019-04-15 Thread Jason Shattu
Forgive my ignorance, but I can't work out how to submit an OpenJFX bug report. The link you've sent ultimately brings you to this page: https://bugs.openjdk.java.net/secure/Dashboard.jspa but I don't see any thing for JavaFX here. Thanks, Jason -- Original Message -- From: "Nir

Re: JDK-8220272: Found the problem + possible fix

2019-04-15 Thread Nir Lisker
Hi Thiago, Anyone can create a PR on GitHub, see https://github.com/javafxports/openjdk-jfx/blob/develop/.github/CONTRIBUTING.md . - Nir On Mon, Apr 15, 2019 at 3:47 AM Thiago Milczarek Sayao < thiago.sa...@clamed.com.br> wrote: > * THE PROBLEM * > > In GlassApplication.cpp, the

Re: backport of JDK-8221702

2019-04-15 Thread Kevin Rushforth
+1 On 4/13/2019 11:48 AM, Johan Vos wrote: Hi Kevin, I ask permission to backport the following issue to jfx-11: JDK-8221702: Use HTTPS to download all build dependencies. - Johan

Re: JDK-8220272: Found the problem + possible fix

2019-04-15 Thread Kevin Rushforth
Hi Thiago, If you are interested in contributing a fix, please see CONTRIBUTING.md [1] for instructions. Before we can evaluate your proposed fix, we will need is a signed OCA [2] from you. Thank you. -- Kevin [1]

Some general questions about JavaFX

2019-04-15 Thread Jason Shattu
Hi all, From a developer who wants to use JavaFX 11+ and as someone that wants to raise bugs, what's the difference between the Oracle Java Bug Database (which is very difficult to use) and the GitHub repo issues list. I've found 3 annoying bugs with JavaFX in the recent 11+ version (not

Re: Some general questions about JavaFX

2019-04-15 Thread Kevin Rushforth
As noted in the project README [1] on GItHub, JBS [2] is the official bug tracker for the OpenJFX project. The GitHub issue tracker is just for convenience. Before a bug can be fixed we need a JBS bug. Bugs can be filed here [3]. -- Kevin [1]

Re: Some general questions about JavaFX

2019-04-15 Thread Kevin Rushforth
> The Oracle Java Bug Database seem to just very old bugs and has limited facilities to search. I guess you just need a little help using JBS, which is based on JIRA. It has much more sophisticated searching capabilities than the GitHub issue tracker (which, to be honest, I can't imagine

FxApplicationThread usage with

2019-04-15 Thread Andrew Munn
I have a table where column values are bound to row objects' properties like this column.setCellValueFactory(ex -> ex.getValue().getSomeProperty()); Should I always call... someProperty.setValue(updatedValue); ...in the FxApplicationThread, or does binding it to the TableColumn take care