-
Bug
-
Resolution: Fixed
-
P4
-
jfx14
noted a new failing test:
@Test @Ignore("left-over from choiceBoxSkin fix")
public void testChoiceBoxSetItems() {
ChoiceBox<String> box = new ChoiceBox<>();
installDefaultSkin(box);
replaceSkin(box);
box.setItems(observableArrayList("one"));
box.getItems().add("added");
}
Overlooked the listener to box' items property when fixingJDK-8244657 .. needs to be removed in dispose along with the others ;)
@Test @Ignore("left-over from choiceBoxSkin fix")
public void testChoiceBoxSetItems() {
ChoiceBox<String> box = new ChoiceBox<>();
installDefaultSkin(box);
replaceSkin(box);
box.setItems(observableArrayList("one"));
box.getItems().add("added");
}
Overlooked the listener to box' items property when fixing
- blocks
-
JDK-8241364 ☂ Cleanup skin implementations to allow switching
- Open
- relates to
-
JDK-8244657 ChoiceBox/ToolBarSkin: misbehavior on switching skin
- Resolved