Search in sources :

Example 1 with PreferencesController

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();
    }
}
Also used : PreferencesController(de.carne.certmgr.jfx.preferences.PreferencesController) StorePreferencesController(de.carne.certmgr.jfx.storepreferences.StorePreferencesController) IOException(java.io.IOException) FXML(javafx.fxml.FXML)

Aggregations

PreferencesController (de.carne.certmgr.jfx.preferences.PreferencesController)1 StorePreferencesController (de.carne.certmgr.jfx.storepreferences.StorePreferencesController)1 IOException (java.io.IOException)1 FXML (javafx.fxml.FXML)1