diff --git a/core/src/com/unciv/ui/screens/newgamescreen/GameOptionsTable.kt b/core/src/com/unciv/ui/screens/newgamescreen/GameOptionsTable.kt index f20d626c19..b43cc04534 100644 --- a/core/src/com/unciv/ui/screens/newgamescreen/GameOptionsTable.kt +++ b/core/src/com/unciv/ui/screens/newgamescreen/GameOptionsTable.kt @@ -342,7 +342,7 @@ class GameOptionsTable( } private fun Table.addSelectBox(text: String, values: Collection, initialState: String, onChange: (newValue: String) -> String?) { - add(text.toLabel()).left() + add(text.toLabel(hideIcons = true)).left() val selectBox = TranslatedSelectBox(values, initialState, BaseScreen.skin) selectBox.isDisabled = locked selectBox.onChange {