diff --git a/Projekte/jme-common/src/main/resources/Interface/Lemur/pp-styles.groovy b/Projekte/jme-common/src/main/resources/Interface/Lemur/pp-styles.groovy index e39c101..68a0f6e 100644 --- a/Projekte/jme-common/src/main/resources/Interface/Lemur/pp-styles.groovy +++ b/Projekte/jme-common/src/main/resources/Interface/Lemur/pp-styles.groovy @@ -208,6 +208,7 @@ selector("slider.down.button", "pp") { selector("checkbox", "pp") { color = buttonEnabledColor + fontSize = 20 } selector("rollup", "pp") { @@ -231,3 +232,7 @@ selector("tab.button", "pp") { buttonCommands = stdButtonCommands } +selector("settings-title", "pp") { + fontSize = 48 // Set font size + background = new QuadBackgroundComponent(color(0.4157f, 0.4235f, 0.4392f, 1.0f)) // Grey background + } \ No newline at end of file diff --git a/Projekte/monopoly/client/src/main/java/pp/monopoly/client/gui/SettingsMenu.java b/Projekte/monopoly/client/src/main/java/pp/monopoly/client/gui/SettingsMenu.java index 6997c45..6de6968 100644 --- a/Projekte/monopoly/client/src/main/java/pp/monopoly/client/gui/SettingsMenu.java +++ b/Projekte/monopoly/client/src/main/java/pp/monopoly/client/gui/SettingsMenu.java @@ -44,13 +44,13 @@ public class SettingsMenu extends Dialog { Container effectSoundContainer = settingsContainer.addChild(new Container()); effectSoundContainer.addChild(new Label("Effekt Sound", new ElementId("label"))); effectSoundContainer.addChild(new Slider()); - effectSoundContainer.addChild(new Checkbox("Aktivieren")).setChecked(true); + effectSoundContainer.addChild(new Checkbox("Soundeffekte an")).setChecked(true); // Hintergrundmusik: Slider und Checkbox Container backgroundMusicContainer = settingsContainer.addChild(new Container()); backgroundMusicContainer.addChild(new Label("Hintergrund Musik", new ElementId("label"))); backgroundMusicContainer.addChild(new Slider()); - backgroundMusicContainer.addChild(new Checkbox("Aktivieren")).setChecked(true); + backgroundMusicContainer.addChild(new Checkbox("Musik an")).setChecked(true); // Beenden-Button Button quitButton = settingsContainer.addChild(new Button("Beenden", new ElementId("menu-button")));