Fixed IllegalStateException when clicked the empty space of list in InstallTypePage
This commit is contained in:
@@ -37,6 +37,8 @@ public final class InstallTypePage extends StackPane implements WizardPage {
|
|||||||
|
|
||||||
FXUtils.loadFXML(this, "/assets/fxml/download/dltype.fxml");
|
FXUtils.loadFXML(this, "/assets/fxml/download/dltype.fxml");
|
||||||
list.setOnMouseClicked(e -> {
|
list.setOnMouseClicked(e -> {
|
||||||
|
if (list.getSelectionModel().getSelectedIndex() < 0)
|
||||||
|
return;
|
||||||
controller.getSettings().put(INSTALL_TYPE, list.getSelectionModel().getSelectedIndex());
|
controller.getSettings().put(INSTALL_TYPE, list.getSelectionModel().getSelectedIndex());
|
||||||
controller.onNext();
|
controller.onNext();
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user