diff options
| author | ilotterytea <iltsu@alright.party> | 2022-11-29 18:45:40 +0600 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2022-11-29 18:45:40 +0600 |
| commit | e508e19024711e0e985aedb6d549650d9ebceaae (patch) | |
| tree | 3fb14b061591c84c811c31cb619ac77a26389414 /core | |
| parent | 7e4562c323cdcf323b5067261fcae002508fadd6 (diff) | |
Fix: And also subtract with the size of the icon, so that the table completely disappears
Diffstat (limited to 'core')
| -rw-r--r-- | core/src/com/ilotterytea/maxoning/screens/MenuScreen.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/com/ilotterytea/maxoning/screens/MenuScreen.java b/core/src/com/ilotterytea/maxoning/screens/MenuScreen.java index 9855066..fbf9a21 100644 --- a/core/src/com/ilotterytea/maxoning/screens/MenuScreen.java +++ b/core/src/com/ilotterytea/maxoning/screens/MenuScreen.java @@ -217,7 +217,7 @@ public class MenuScreen implements Screen { private void showOptions() { startBtn.addAction(Actions.moveTo(startBtn.getX(), -startBtn.getY() - startBtn.getHeight(), 1f, Interpolation.exp10Out)); savLabel.addAction(Actions.moveTo(savLabel.getX(), -savLabel.getY() - savLabel.getHeight(), 1f, Interpolation.exp10Out)); - menuTable.addAction(Actions.moveTo(menuTable.getX(), -menuTable.getY() - menuTable.getHeight(), 1f, Interpolation.exp10Out)); + menuTable.addAction(Actions.moveTo(menuTable.getX(), -menuTable.getY() - menuTable.getHeight() - 48f, 1f, Interpolation.exp10Out)); brandLogo.clearActions(); brandLogo.addAction( |
