Skip to content

Commit e16b41d

Browse files
committed
fix(menu): add missing contentDescription
1 parent 3e551bb commit e16b41d

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

app/src/main/res/menu/converter.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,30 @@
33
xmlns:app="http://schemas.android.com/apk/res-auto">
44
<item
55
android:id="@+id/action_theme"
6+
android:contentDescription="@string/theme"
67
android:title="@string/theme"
78
app:showAsAction="never">
89
<menu>
910
<group android:checkableBehavior="single">
1011
<item
1112
android:id="@+id/action_theme_system"
13+
android:contentDescription="@string/theme_system"
1214
android:title="@string/theme_system" />
1315
<item
1416
android:id="@+id/action_theme_light"
17+
android:contentDescription="@string/theme_light"
1518
android:title="@string/theme_light" />
1619
<item
1720
android:id="@+id/action_theme_dark"
21+
android:contentDescription="@string/theme_dark"
1822
android:title="@string/theme_dark" />
1923
</group>
2024
</menu>
2125
</item>
2226

2327
<item
2428
android:id="@+id/action_about"
29+
android:contentDescription="@string/actionAbout"
2530
android:title="@string/actionAbout"
2631
app:showAsAction="never" />
2732
</menu>

0 commit comments

Comments
 (0)