-fx-background-radius problem

Jeff Martin jeff at reportmill.com
Tue Jun 10 15:15:46 UTC 2014


This is on 8u5 b13. Running with SW on Mac didn't reproduce the problem. Here is the jira:

	Jira: -fx-background-radius not rendering on Parallels Windows

jeff


On Jun 9, 2014, at 6:18 PM, Kevin Rushforth <kevin.rushforth at oracle.com> wrote:

> Since you said:
> 
>> On Parallels Windows it does not: http://www.reportmill.com/examples/Radius/RadiusWin.jpg
>>  
> 
> This is probably a SW rendering bug (we will fall back to SW when running in Parallels). Is this with 8u20-ea or with 8u5?
> 
> Please file a JIRA with a complete test program. Also, can you try it with "-Dprism.order=sw" on Mac and see if the same bug happens?
> 
> -- Kevin
> 
> 
> Jeff Martin wrote:
>> Has anyone seen a problem with -fx-background-radius on Windows? When I run Windows using Parallels (on a Mac), -fx-background-radius styles seem to get ignored.
>> 
>> Here is my sample code:
>> 
>>    // Create label with background color and radius
>>    Label label = new Label("Testing"); label.setPadding(new Insets(20));
>>    label.setStyle("-fx-background-color:cyan;-fx-background-radius:20;");
>> 
>>    // Add to box, scene and stage
>>    VBox vbox = new VBox(); vbox.setPrefSize(300,300); vbox.setAlignment(Pos.CENTER);
>>    vbox.getChildren().add(label); aStage.setScene(new Scene(vbox)); aStage.show();
>> 
>> On my Mac it renders correctly:  http://www.reportmill.com/examples/Radius/RadiusMac.jpg
>> 
>> On Parallels Windows it does not: http://www.reportmill.com/examples/Radius/RadiusWin.jpg
>> 
>> Am I missing something or should I file a bug?
>> 
>> jeff



More information about the openjfx-dev mailing list