-
Bug
-
Resolution: Duplicate
-
P3
-
9
Please run the following sample:
import javafx.application.Application;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.ChoiceBox;
import javafx.stage.Stage;
public class ChoiceBoxApp extends Application {
public Parent createContent() {
ChoiceBox cb = new ChoiceBox();
cb.getItems().addAll("One", "Two", "Three");
cb.getSelectionModel().selectFirst();
return cb;
}
@Override public void start(Stage primaryStage) throws Exception {
primaryStage.setScene(new Scene(createContent()));
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
the ChoiceBox is broken: can't list the items or select one of them.
- is blocked by
-
JDK-8163496 Rework Glass GTK to correct gtk3 structure sizes
-
- Resolved
-
- relates to
-
JDK-8159892 [GTK3] invalid rendering of FX app stage in case of scaling
-
- Resolved
-
-
JDK-8159968 Ubuntu 16.04 + HiDPI: menu is broken
-
- Closed
-
-
JDK-8171336 Ubuntu 16.04 + HiDPI: some popup windows arrive in the wrong place
-
- Closed
-
-
JDK-8165959 [hidpi] Ubuntu 16.04: ContextMenu and Popup are broken
-
- Closed
-
-
JDK-8166149 [hidpi] Ubuntu 16.04 cannot navigate through TabPane tabs using drop-down list
-
- Closed
-
-
JDK-8166291 [hidpi] Ubuntu 16.04: the toolbar's ">>" button isn't navigable
-
- Closed
-
-
JDK-8165967 [hidpi] Ubuntu 16.04: ChoiceDialog is broken
-
- Closed
-
-
JDK-8166058 [hidpi] AdvancedStage sample produces invalid stage sometimes
-
- Closed
-
-
JDK-8166458 [hidpi] Ubuntu 16.04: tooltips are broken
-
- Closed
-
-
JDK-8171336 Ubuntu 16.04 + HiDPI: some popup windows arrive in the wrong place
-
- Closed
-