mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-05-17 10:11:27 +00:00
fixed getter name
This commit is contained in:
@@ -38,7 +38,7 @@ abstract class VaultStatisticsModule {
|
||||
@VaultStatisticsScoped
|
||||
static Stage provideStage(StageFactory factory, ResourceBundle resourceBundle, @VaultStatisticsWindow Vault vault) {
|
||||
Stage stage = factory.create();
|
||||
stage.setTitle(String.format(resourceBundle.getString("stats.title"), vault.getDisplayableName()));
|
||||
stage.setTitle(String.format(resourceBundle.getString("stats.title"), vault.getDisplayName()));
|
||||
stage.setResizable(false);
|
||||
var weakStage = new WeakReference<>(stage);
|
||||
vault.stateProperty().addListener(new ChangeListener<>() {
|
||||
|
||||
Reference in New Issue
Block a user