changed wording and window size

This commit is contained in:
Jan-Peter Klein
2023-07-11 14:53:36 +02:00
parent 982e88d1c5
commit 25474ce014
3 changed files with 8 additions and 7 deletions

View File

@@ -34,8 +34,8 @@ abstract class UpdateReminderModule {
@UpdateReminderScoped
static Stage provideStage(StageFactory factory, ResourceBundle resourceBundle) {
Stage stage = factory.create();
stage.setTitle(resourceBundle.getString("updateReminder.title"));
stage.setMinWidth(450);
stage.setTitle(resourceBundle.getString("updateReminder.windowTitle"));
stage.setMinWidth(550);
stage.setMinHeight(100);
stage.initModality(Modality.APPLICATION_MODAL);
return stage;