From 121faa5ed8d80628cb8f54d2d95d2796487863aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Zurcher?= Date: Wed, 30 Dec 2015 23:13:52 +0100 Subject: OptionsMenu: fix missing padding --- core/src/ch/asynk/rustanddust/menu/OptionsMenu.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/src/ch/asynk/rustanddust/menu/OptionsMenu.java b/core/src/ch/asynk/rustanddust/menu/OptionsMenu.java index f39ea39..e80d995 100644 --- a/core/src/ch/asynk/rustanddust/menu/OptionsMenu.java +++ b/core/src/ch/asynk/rustanddust/menu/OptionsMenu.java @@ -52,14 +52,14 @@ public class OptionsMenu extends Patch this.font = game.font; this.okBtn = new Bg(game.getUiRegion(game.UI_OK)); this.cancelBtn = new Bg(game.getUiRegion(game.UI_CANCEL)); - this.title = new Label(font); + this.title = new Label(font, 5f); this.title.write("- Options"); - this.fxVolume = new Label(font); + this.fxVolume = new Label(font, 5f); this.fxVolume.write("Fx Volume"); - this.fxVolumeValue = new Label(font); - this.graphics = new Label(font); + this.fxVolumeValue = new Label(font, 5f); + this.graphics = new Label(font, 5f); this.graphics.write("Graphics"); - this.graphicsValue = new Label(font); + this.graphicsValue = new Label(font, 5f); this.checkValues = new boolean[checkStrings.length]; this.checkLabels = new Label[checkStrings.length]; for (int i = 0; i < checkLabels.length; i++) { -- cgit v1.1-2-g2b99