Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e452657b authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "TalkBack should not announce the decorative icon" into main

parents 84684065 9bc72e07
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -218,9 +218,11 @@ private fun TutorialButton(
            verticalArrangement = Arrangement.Center,
            horizontalAlignment = Alignment.CenterHorizontally,
        ) {
            // contentDescription is set to null because the icon is decorative and we don't want to
            // repeat the text twice
            Icon(
                imageVector = icon,
                contentDescription = text,
                contentDescription = null,
                modifier = Modifier.width(30.dp).height(30.dp),
                tint = iconColor,
            )