diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2015-12-30 23:13:52 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2015-12-30 23:13:52 +0100 |
commit | 121faa5ed8d80628cb8f54d2d95d2796487863aa (patch) | |
tree | 88e38b1a0e9bc646a7edd793f21afac7e2133625 | |
parent | 8581999540da7523466de056bb094c1ee6e2b466 (diff) | |
download | RustAndDust-121faa5ed8d80628cb8f54d2d95d2796487863aa.zip RustAndDust-121faa5ed8d80628cb8f54d2d95d2796487863aa.tar.gz |
OptionsMenu: fix missing padding
-rw-r--r-- | core/src/ch/asynk/rustanddust/menu/OptionsMenu.java | 10 |
1 files 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++) { |