fix Typo and add in JavaFX as requirement

This commit is contained in:
2026-03-28 23:10:52 +01:00
committed by Philipp Wagner
parent 68d171e793
commit 178783aa8c
2 changed files with 3 additions and 1 deletions

View File

@@ -6212,7 +6212,7 @@ public class Kst4ContestApplication extends Application implements StatusUpdateL
* *
****************************************************************************/ ****************************************************************************/
settingsStage = new Stage(); settingsStage = new Stage();
settingsStage.setTitle("Change Client seetings"); settingsStage.setTitle("Change Client Settings");
BorderPane optionsPanel = new BorderPane(); BorderPane optionsPanel = new BorderPane();

View File

@@ -1,5 +1,7 @@
module praktiKST { module praktiKST {
requires javafx.controls; requires javafx.controls;
requires javafx.fxml;
requires javafx.web;
requires jdk.xml.dom; requires jdk.xml.dom;
requires java.sql; requires java.sql;
requires javafx.media; requires javafx.media;