Use CompoundIcons.Code() instead of CompoundDrawables.ic_compound_code

This commit is contained in:
Benoit Marty
2025-06-20 10:13:48 +02:00
parent 009601cf5b
commit acaee65e9b

View File

@@ -272,7 +272,7 @@ private fun ColumnScope.Footer(
private fun DeveloperPreferencesView(onOpenDeveloperSettings: () -> Unit) {
ListItem(
headlineContent = { Text(stringResource(id = CommonStrings.common_developer_options)) },
leadingContent = ListItemContent.Icon(IconSource.Resource(CompoundDrawables.ic_compound_code)),
leadingContent = ListItemContent.Icon(IconSource.Vector(CompoundIcons.Code())),
onClick = onOpenDeveloperSettings
)
}