mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-05-22 12:41:27 +00:00
improve naming
This commit is contained in:
@@ -38,9 +38,9 @@ public class Dialogs {
|
||||
.setDescriptionKey("removeCert.description") //
|
||||
.setIcon(FontAwesome5Icon.QUESTION) //
|
||||
.setOkButtonKey("removeCert.confirmBtn") //
|
||||
.setCancelButtonKey("generic.button.cancel").setOkAction(v -> {
|
||||
.setCancelButtonKey("generic.button.cancel").setOkAction(stage -> {
|
||||
settings.licenseKey.set(null);
|
||||
v.close();
|
||||
stage.close();
|
||||
}) //
|
||||
.setCancelAction(Stage::close) //
|
||||
.build();
|
||||
|
||||
@@ -153,9 +153,9 @@ public class FxApplicationWindows {
|
||||
Dialogs.buildDokanySupportEndDialog(
|
||||
simpleDialogBuilder.get(),
|
||||
mainWindow.get().window(),
|
||||
v -> {
|
||||
stage -> {
|
||||
showPreferencesWindow(SelectedPreferencesTab.VOLUME);
|
||||
v.close();
|
||||
stage.close();
|
||||
}
|
||||
).showAndWait();
|
||||
}, Platform::runLater);
|
||||
|
||||
Reference in New Issue
Block a user