Pagination doen't render its arrows

XMLWordPrintable

    • Type: Bug
    • Resolution: Duplicate
    • Priority: P3
    • 8
    • Affects Version/s: 8
    • Component/s: javafx
    • Environment:

      jdk1.8.0b95

      To reproduce just run the app.

      In b93 the arrows are rendered while in b95 they aren't.

      import javafx.application.Application;
      import javafx.scene.Scene;
      import javafx.scene.control.Pagination;
      import javafx.scene.layout.VBox;
      import javafx.stage.Stage;

      public class PaginationApp extends Application {

          public static void main(String[] args) {
              launch(args);
          }

          @Override
          public void start(Stage stage) throws Exception {
              stage.setScene(createScene());
              stage.show();
          }

          private Scene createScene() {

              Pagination pagination = new Pagination();

              VBox root = new VBox(5);
              root.getChildren().add(pagination);

              return new Scene(root, 1200, 800);
          }
      }

            Assignee:
            Parvathi Somashekar (Inactive)
            Reporter:
            Dmitry Zinkevich (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: