From 35fbb5f9f391b9e37694be085a09e7e0ffea1517 Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Tue, 18 Apr 2023 23:00:16 +0300 Subject: [PATCH] Resolved #9221 - removed icons from selectboxes --- core/src/com/unciv/ui/screens/newgamescreen/GameOptionsTable.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {