Re: Problems building openjfx

2018-11-01 Thread Michael Ennen
Also don't forget about the Windows build script: https://github.com/javafxports/openjdk-jfx/blob/develop/tools/scripts/build.ps1 It is what I use to automate the process of building OpenJFX on Windows as much as possible. Any improvements to the script would be appreciated. On Wed, Oct 31,

Re: Maybe a TitledPane bug

2018-11-01 Thread David Grieve
On 11/1/18 2:19 PM, Sverre Moe wrote: scene.getStylesheets().add(getClass().getResource("light.css").toExternalForm()); Here is the CSS content for light.css .titled-pane > .title {     -fx-color: rgb(220, 220, 220); Well, there you go. Your 'light.css' style trumps the setBackground. The

Re: Maybe a TitledPane bug

2018-11-01 Thread Sverre Moe
I am now not so sure it is a bug. Seems the problem is the hover pseudo state that resets the background color. >From modena.css .titled-pane > .title:hover { -fx-color: -fx-hover-base; } Try this example: import javafx.application.Application; import javafx.scene.Scene; import

Re: Maybe a TitledPane bug

2018-11-01 Thread David Grieve
It's hard to tell without some short, self-contained, correct example. This sample I crafted here doesn't reproduce the issue. @Override public void start(Stage primaryStage) { final TitledPane titledPane =new TitledPane("Button Pane",new Button("Button")); final HBox root =new

RE: Problems building openjfx

2018-11-01 Thread carl
I’ve just been compiling 8 for Windows since I can get 11 from openjfx.io. I’m going to compile 8 for the Mac and Linux in the next week or two. I’ll post my notes again for these platforms. -Carl From: Johan Vos Sent: Thursday, November 1, 2018 6:58 AM To: Nir Lisker ; Carl Walker

Re: Problems building openjfx

2018-11-01 Thread Johan Vos
On Wed, Oct 31, 2018 at 7:34 PM Nir Lisker wrote: > I think we should focus on 11 on the wiki, so it's really good you have >> instructions for 8 on your site. But the 11 instructions on the wiki >> should >> be working for everyone who wants to build 11. > > > There are instructions for 8 on