[Button] size jumps

XMLWordPrintable

    • Type: Bug
    • Resolution: Cannot Reproduce
    • Priority: P4
    • 8
    • Affects Version/s: 8
    • Component/s: javafx
    • Environment:

      8.0 developers controls scrum build at august 17.

      developers build of 8.0 (less then 8.0b01)

      Code:
          @Override
          public void start(Stage stage) throws Exception {
              final Button button = new Button("WWWWWW");
              final ObjectProperty<Font> font = new SimpleObjectProperty<Font>(new Font(20));
              button.setOnAction(new EventHandler<ActionEvent>(){

                  @Override
                  public void handle(ActionEvent t) {
                      button.fontProperty().bind(font);
                  }
              });
              Pane pane = new Pane();
              pane.getChildren().addAll(button);
              Scene scene = new Scene(pane, 300, 300);
              stage.setScene(scene);
              stage.show();
          }

      Steps : click button.
      move cursor out of the button.
      move cursor on the button.
      move cursor out of the button

      Look at the attached movie.

            Assignee:
            Jonathan Giles
            Reporter:
            Alexander Kirov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: