Fix padding for custom save/load location buttons
This commit is contained in:
parent
643fb89e71
commit
a844216298
2 changed files with 2 additions and 2 deletions
|
@ -85,7 +85,7 @@ class LoadGameScreen(previousScreen:CameraStageBaseScreen) : PickerScreen() {
|
|||
game.loadGame(it)
|
||||
}
|
||||
}
|
||||
rightSideTable.add(loadFromCustomLocation).row()
|
||||
rightSideTable.add(loadFromCustomLocation).pad(10f).row()
|
||||
}
|
||||
rightSideTable.add(errorLabel).row()
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ class SaveGameScreen : PickerScreen() {
|
|||
}
|
||||
}
|
||||
}
|
||||
newSave.add(saveToCustomLocation).row()
|
||||
newSave.add(saveToCustomLocation).pad(10f).row()
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue