Fix appbar action content descriptions

This commit is contained in:
arkon
2022-08-07 10:16:08 -04:00
parent 7701672d7a
commit 3c2e237d63
2 changed files with 7 additions and 5 deletions

View File

@@ -62,10 +62,10 @@ fun HistoryRegularToolbar(
title = stringResource(id = R.string.history),
actions = {
IconButton(onClick = onClickSearch) {
Icon(Icons.Outlined.Search, contentDescription = "search")
Icon(Icons.Outlined.Search, contentDescription = stringResource(R.string.action_search))
}
IconButton(onClick = onClickDelete) {
Icon(Icons.Outlined.DeleteSweep, contentDescription = "delete")
Icon(Icons.Outlined.DeleteSweep, contentDescription = stringResource(R.string.pref_clear_history))
}
},
downloadedOnlyMode = downloadedOnlyMode,