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

Client area is not updated at application startup

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • 9
    • 9
    • javafx
    • None
    • Ubuntu 16.04, GTK3, VMWare 7.1.4, b141

      For any simplest application the client area is not updated at application startup (until resize).



      Sample to check:

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

      public class App extends Application {

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

          @Override
          public void start(Stage stage) throws Exception {
              Button control = new Button("Button");
              Scene scene = new Scene(new VBox(control), 100, 100);
              stage.setScene(scene);
              stage.show();
          }
      }

            ddhill David Hill (Inactive)
            ogb Oleg Barbashov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated:
              Resolved: