Fix misused string key in library context menu (#9388)

The "update global" action used key which led to translation issues in Polish.

(cherry picked from commit ef3d2c14b470c17d240e7522e04b251fccbc3b9a)
This commit is contained in:
Tooster 2023-04-25 04:32:28 +02:00 committed by Jobobby04
parent 20d35268b1
commit cadc6469ef

View File

@ -112,7 +112,7 @@ private fun LibraryRegularToolbar(
OverflowMenu { closeMenu ->
DropdownMenuItem(
text = { Text(text = stringResource(R.string.pref_category_library_update)) },
text = { Text(text = stringResource(R.string.action_update_library)) },
onClick = {
onClickGlobalUpdate()
closeMenu()