Merge branch 'temp'

This commit is contained in:
Yair Morgenstern 2021-01-08 00:23:22 +02:00
commit ca6b09bed1
2 changed files with 3 additions and 3 deletions

View File

@ -3,8 +3,8 @@ package com.unciv.build
object BuildConfig {
const val kotlinVersion = "1.3.71"
const val appName = "Unciv"
const val appCodeNumber = 518
const val appVersion = "3.12.7"
const val appCodeNumber = 519
const val appVersion = "3.12.7-patch1"
const val gdxVersion = "1.9.12"
const val roboVMVersion = "2.3.1"

View File

@ -49,7 +49,7 @@ class PlayerPickerTable(val previousScreen: IPreviousScreen, var gameParameters:
top()
add("Civilizations".toLabel(fontSize = 24)).padBottom(20f).row()
add(ScrollPane(playerListTable, skin).apply { setOverscroll(false, false) }).width(civBlocksWidth)
add(ScrollPane(playerListTable).apply { setOverscroll(false, false) }).width(civBlocksWidth)
update()
}