Attach movie.
Code:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.ComboBox;
import javafx.scene.control.TextField;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class JavaApplication41 extends Application {
@Override
public void start(Stage stage) {
VBox root = new VBox();
ComboBox cb = new ComboBox();
cb.getItems().addAll("looooooooooooooooong", 22222222, 3);
root.getChildren().addAll(cb);
Scene scene = new Scene(root, 300, 300);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
Smth was broken between b10 and b11.
Code:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.ComboBox;
import javafx.scene.control.TextField;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class JavaApplication41 extends Application {
@Override
public void start(Stage stage) {
VBox root = new VBox();
ComboBox cb = new ComboBox();
cb.getItems().addAll("looooooooooooooooong", 22222222, 3);
root.getChildren().addAll(cb);
Scene scene = new Scene(root, 300, 300);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
Smth was broken between b10 and b11.