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

Pagination doen't render its arrows

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • 8
    • 8
    • javafx
    • 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);
          }
      }

        1. Pagination_b93_b95.png
          133 kB
          Dmitry Zinkevich
        2. pagination-arrows.png
          22 kB
          Parvathi Somashekar

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

              Created:
              Updated:
              Resolved:
              Imported: