Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8366739

ToolBar: overflow menu with fractional scale (2)

XMLWordPrintable

      Another scenario (https://bugs.openjdk.org/browse/JDK-8364049 ) where the toolbar overflow button is erroneously displayed with fractional scale:

      public class ToolbarBugApp extends Application {
          @Override
          public void start(Stage primaryStage) {
              ToolBar tb = new ToolBar(
                      new Separator(Orientation.VERTICAL),
                      new Button("Create Schema"));
              BorderPane bp = new BorderPane();
              bp.setTop(new HBox(tb));
              primaryStage.setScene(new Scene(bp, 600, 400));
              primaryStage.show();
          }

            angorya Andy Goryachev
            angorya Andy Goryachev
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: