diff --git a/presentation-core/src/main/java/tachiyomi/presentation/core/components/SettingsItems.kt b/presentation-core/src/main/java/tachiyomi/presentation/core/components/SettingsItems.kt index 1a0d12200..c58ca0881 100644 --- a/presentation-core/src/main/java/tachiyomi/presentation/core/components/SettingsItems.kt +++ b/presentation-core/src/main/java/tachiyomi/presentation/core/components/SettingsItems.kt @@ -208,6 +208,7 @@ fun SelectItem( label = { Text(text = label) }, value = options[selectedIndex].toString(), onValueChange = {}, + enabled = false, readOnly = true, singleLine = true, trailingIcon = { @@ -215,7 +216,9 @@ fun SelectItem( expanded = expanded, ) }, - colors = ExposedDropdownMenuDefaults.textFieldColors(), + colors = ExposedDropdownMenuDefaults.textFieldColors( + disabledTextColor = MaterialTheme.colorScheme.onSurface, + ), ) ExposedDropdownMenu( @@ -230,6 +233,7 @@ fun SelectItem( onSelect(index) expanded = false }, + contentPadding = ExposedDropdownMenuDefaults.ItemContentPadding, ) } }