Bug 1847746 - Content Description on Print and Save to Save To PDF

The content description was incorrectly set on the print and save to
PDF icon as "close". The content description should be null because the
elements are decorative and are a part of a compose button.
fenix/118.0
Olivia Hall 10 months ago committed by mergify[bot]
parent 39b16a869f
commit cfc48e1b16

@ -43,9 +43,7 @@ fun PrintItem(
Icon(
painter = painterResource(R.drawable.ic_print),
contentDescription = stringResource(
R.string.content_description_close_button,
),
contentDescription = null,
tint = FirefoxTheme.colors.iconPrimary,
)

@ -43,9 +43,7 @@ fun SaveToPDFItem(
Icon(
painter = painterResource(R.drawable.ic_download),
contentDescription = stringResource(
R.string.content_description_close_button,
),
contentDescription = null,
tint = FirefoxTheme.colors.iconPrimary,
)

Loading…
Cancel
Save