From 739e38a047653b78b32d4ab6b16135fa89ff90d0 Mon Sep 17 00:00:00 2001 From: Alex Hart Date: Thu, 20 Feb 2020 12:04:48 -0400 Subject: [PATCH] Fix reaction details bottom sheet scrolling. --- .../reactions/ReactionsBottomSheetDialogFragment.java | 1 + .../res/layout/reactions_bottom_sheet_dialog_fragment.xml | 8 +++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/app/src/main/java/org/thoughtcrime/securesms/reactions/ReactionsBottomSheetDialogFragment.java b/app/src/main/java/org/thoughtcrime/securesms/reactions/ReactionsBottomSheetDialogFragment.java index b18f228ed8..acddb60530 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/reactions/ReactionsBottomSheetDialogFragment.java +++ b/app/src/main/java/org/thoughtcrime/securesms/reactions/ReactionsBottomSheetDialogFragment.java @@ -67,6 +67,7 @@ public final class ReactionsBottomSheetDialogFragment extends BottomSheetDialogF recipientRecyclerView = view.findViewById(R.id.reactions_bottom_view_recipient_recycler); emojiRecyclerView = view.findViewById(R.id.reactions_bottom_view_emoji_recycler); + emojiRecyclerView.setNestedScrollingEnabled(false); messageId = getArguments().getLong(ARGS_MESSAGE_ID); setUpRecipientsRecyclerView(); diff --git a/app/src/main/res/layout/reactions_bottom_sheet_dialog_fragment.xml b/app/src/main/res/layout/reactions_bottom_sheet_dialog_fragment.xml index b7d3343d8f..4112b3a3b6 100644 --- a/app/src/main/res/layout/reactions_bottom_sheet_dialog_fragment.xml +++ b/app/src/main/res/layout/reactions_bottom_sheet_dialog_fragment.xml @@ -2,9 +2,10 @@