Resolved #9221 - removed icons from selectboxes

This commit is contained in:
Yair Morgenstern 2023-04-18 23:00:16 +03:00
parent 9ba5497ce4
commit 35fbb5f9f3

View File

@ -342,7 +342,7 @@ class GameOptionsTable(
}
private fun Table.addSelectBox(text: String, values: Collection<String>, 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 {