This commit is contained in:
Johannes Schmelz 2024-12-02 00:48:53 +01:00
commit 4fff8394d9
2 changed files with 1 additions and 3 deletions

View File

@ -136,7 +136,6 @@ public class BuyHouse extends Dialog {
} }
propertySelector = new Selector<>(propertyOptions, "glass"); propertySelector = new Selector<>(propertyOptions, "glass");
dropdownContainer.setBackground(new QuadBackgroundComponent(ColorRGBA.Orange));
dropdownContainer.addChild(propertySelector); dropdownContainer.addChild(propertySelector);
// Track selection changes // Track selection changes
@ -149,7 +148,6 @@ public class BuyHouse extends Dialog {
return dropdownContainer; return dropdownContainer;
} }
/** /**
* Retrieves the list of properties owned by the current player. * Retrieves the list of properties owned by the current player.
* *

View File

@ -83,7 +83,7 @@ public class Rent extends Dialog {
container.setPreferredSize(new Vector3f(550, 250, 10)); container.setPreferredSize(new Vector3f(550, 250, 10));
// Title // Title
Label title = container.addChild(new Label("Miete!", new ElementId("label-Bold"))); Label title = container.addChild(new Label("Miete!", new ElementId("warning-title")));
title.setFontSize(48); title.setFontSize(48);
title.setColor(ColorRGBA.Black); title.setColor(ColorRGBA.Black);