-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
8
-
jdk 1.8.0-ea-b57
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Separator;
import javafx.scene.control.SplitMenuButtonBuilder;
import javafx.scene.control.ToolBar;
import javafx.stage.Stage;
public class MyApp extends Application
{
public static void main(String[] args)
{
launch(args);
}
@Override
public void start(Stage stage) throws Exception
{
ToolBar toolbar = new ToolBar();
toolbar.getItems().addAll(new Button("One"), new Button("Two"), new Separator(), SplitMenuButtonBuilder.create().text("three").build());
Scene scene = new Scene(toolbar);
stage.setScene(scene);
stage.show();
}
}
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Separator;
import javafx.scene.control.SplitMenuButtonBuilder;
import javafx.scene.control.ToolBar;
import javafx.stage.Stage;
public class MyApp extends Application
{
public static void main(String[] args)
{
launch(args);
}
@Override
public void start(Stage stage) throws Exception
{
ToolBar toolbar = new ToolBar();
toolbar.getItems().addAll(new Button("One"), new Button("Two"), new Separator(), SplitMenuButtonBuilder.create().text("three").build());
Scene scene = new Scene(toolbar);
stage.setScene(scene);
stage.show();
}
}
- relates to
-
JDK-8125022 CSS : border with style dashed different from 2.2
- Closed