summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2022-12-10 20:22:02 +0600
committerilotterytea <iltsu@alright.party>2022-12-10 20:22:02 +0600
commit21a128e69722d7de96c8fb2c6d2c345894751ce2 (patch)
tree80c5f42864de9252b77c0bc02238f8a0d1985c37
parentbe98070581da2b5fe5b4fc391a9fa21d49b819eb (diff)
Rescaled the ImageButtons from 64f to 128f
-rw-r--r--core/src/com/ilotterytea/maxoning/screens/GameScreen.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/com/ilotterytea/maxoning/screens/GameScreen.java b/core/src/com/ilotterytea/maxoning/screens/GameScreen.java
index a767e88..edbccae 100644
--- a/core/src/com/ilotterytea/maxoning/screens/GameScreen.java
+++ b/core/src/com/ilotterytea/maxoning/screens/GameScreen.java
@@ -116,7 +116,7 @@ public class GameScreen implements Screen, InputProcessor {
// - - - - - - Q U I C K A C T I O N S B O A R D - - - - - - :
quickTable = new Table(skin);
quickTable.setBackground("board");
- quickTable.setSize(stage.getWidth(), 64f);
+ quickTable.setSize(stage.getWidth(), 134f);
quickTable.setPosition(0, 0);
quickTable.align(Align.center);
@@ -133,7 +133,7 @@ public class GameScreen implements Screen, InputProcessor {
}
});
- quickTable.add(shopButton).size(64f).pad(6f);
+ quickTable.add(shopButton).size(128f).pad(6f);
// - - - I N V E N T O R Y B U T T O N - - - :
ImageButton inventoryButton = new ImageButton(skin, "inventory");
@@ -148,7 +148,7 @@ public class GameScreen implements Screen, InputProcessor {
}
});
- quickTable.add(inventoryButton).size(64f).pad(6f);
+ quickTable.add(inventoryButton).size(128f).pad(6f);
stage.addActor(quickTable);