summaryrefslogtreecommitdiff
path: root/core/src/kz/ilotterytea
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/kz/ilotterytea')
-rw-r--r--core/src/kz/ilotterytea/maxon/screens/game/shop/ShopUI.java12
1 files changed, 5 insertions, 7 deletions
diff --git a/core/src/kz/ilotterytea/maxon/screens/game/shop/ShopUI.java b/core/src/kz/ilotterytea/maxon/screens/game/shop/ShopUI.java
index 0282ea6..cf40ebf 100644
--- a/core/src/kz/ilotterytea/maxon/screens/game/shop/ShopUI.java
+++ b/core/src/kz/ilotterytea/maxon/screens/game/shop/ShopUI.java
@@ -81,15 +81,13 @@ public class ShopUI {
}
public void createShopTitleUI() {
- Table table = new Table(this.skin);
+ Table table = new Table();
- table.align(Align.center);
- table.pad(10f);
+ Label label = new Label("Store", skin, "store_title");
+ label.setAlignment(Align.center);
+ table.add(label).padTop(10f).grow();
- Label label = new Label("Store", skin);
- table.add(label);
-
- this.table.add(table).grow().row();
+ this.table.add(table).growX().row();
}
public void createShopControlUI() {