From ce938239e811e90b8deb9a9c1194f266ce47e24b Mon Sep 17 00:00:00 2001 From: Nik Clayton Date: Wed, 19 Jun 2024 14:32:22 +0200 Subject: [PATCH] fix: Use default "Navigate up" content description in ViewThreadActivity (#764) Previous layout set `navigationContentDescription` to `action_open_drawer`, which is not correct for that part of the UI. Remove it, and the default "Navigate up" is used. --- app/src/main/res/layout/activity_view_thread.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/src/main/res/layout/activity_view_thread.xml b/app/src/main/res/layout/activity_view_thread.xml index cf3bd3cf8..dfe55fc8c 100644 --- a/app/src/main/res/layout/activity_view_thread.xml +++ b/app/src/main/res/layout/activity_view_thread.xml @@ -20,8 +20,7 @@ android:layout_width="match_parent" android:layout_height="wrap_content" app:contentInsetStartWithNavigation="0dp" - app:layout_scrollFlags="scroll|enterAlways" - app:navigationContentDescription="@string/action_open_drawer" /> + app:layout_scrollFlags="scroll|enterAlways" />