From 6a9755d1a7b7c7a9445b1235a595f1f46a4548b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Zurcher?= Date: Wed, 30 Dec 2015 23:15:13 +0100 Subject: OptionsPanel: fix missing padding --- core/src/ch/asynk/rustanddust/game/hud/OptionsPanel.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/ch/asynk/rustanddust/game/hud/OptionsPanel.java b/core/src/ch/asynk/rustanddust/game/hud/OptionsPanel.java index 1dc5c68..858d4ad 100644 --- a/core/src/ch/asynk/rustanddust/game/hud/OptionsPanel.java +++ b/core/src/ch/asynk/rustanddust/game/hud/OptionsPanel.java @@ -41,12 +41,12 @@ public class OptionsPanel extends Patch super(game.ninePatch); this.game = game; this.font = game.font; - this.title = new Label(game.font); + this.title = new Label(game.font, 5f); this.title.write("- Options"); - this.fxVolume = new Label(game.font); + this.fxVolume = new Label(game.font, 5f); this.fxVolume.write("Fx Volume"); - this.fxVolumeValue = new Label(game.font); - this.quit = new Label(game.font); + this.fxVolumeValue = new Label(game.font, 5f); + this.quit = new Label(game.font, 5f); this.quit.write("Quit battle"); this.visible = false; this.checkValues = new boolean[checkStrings.length]; -- cgit v1.1-2-g2b99