fix minor inconsitencies

This commit is contained in:
Armin Schrenk
2025-03-04 12:34:45 +01:00
parent 7e66a61294
commit bda38096e1
3 changed files with 5 additions and 3 deletions

View File

@@ -27,7 +27,8 @@ abstract class EventViewModule {
@EventViewWindow
static Stage provideStage(StageFactory factory, ResourceBundle resourceBundle) {
Stage stage = factory.create();
stage.setTitle("TODO EVENTVIEWER");
stage.setHeight(498);
stage.setTitle(resourceBundle.getString("eventView.title"));
stage.setResizable(true);
stage.initModality(Modality.NONE);
return stage;