use of de.carne.certmgr.jfx.preferences.PreferencesController in project certmgr by hdecarne.
the class StoreController method onCmdPreferences.
@SuppressWarnings("unused")
@FXML
void onCmdPreferences(ActionEvent evt) {
try {
PreferencesController editPreferences = PreferencesDialog.load(this).init(this.userPreferences);
editPreferences.showAndWait();
} catch (IOException e) {
Alerts.unexpected(e).showAndWait();
}
}
Aggregations