Skip to content

Commit

Permalink
Fix small padding issue
Browse files Browse the repository at this point in the history
  • Loading branch information
srikavin committed Feb 9, 2020
1 parent 2e53c41 commit 5224433
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions core/src/me/srikavin/fbla/game/ui/MainMenu.kt
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@ class MainMenu(private val skin: Skin, private val playRunnable: () -> Unit) : D
animateCloud(cloud3, 15f, -1500f, -50f)


// container.padLeft(10f)

container.left()
container.add().width(Gdx.graphics.width / 10f)

Expand Down Expand Up @@ -121,7 +119,7 @@ class MainMenu(private val skin: Skin, private val playRunnable: () -> Unit) : D
Buttoni("Exit", null, Runnable { Gdx.app.exit() })

)
}.width(width).growY()
}.width(width).padLeft(7f).growY()

container.table(NinePatchDrawable(skin.getPatch("menu-button-bg"))) { t ->
submenu = t
Expand Down

0 comments on commit 5224433

Please sign in to comment.