diff --git a/CHANGELOG.md b/CHANGELOG.md index 2063c3684..788f25287 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## dev + +#### What's New +- Menus have been refreshed with a cleaner look + +#### What's Fixed +- Fixed issue where one could not navigate to settings after navigating +elsewhere +- Fixed the queue list being non-scrollable in certain cases + +#### Dev/Meta +- Unified navigation graph + ## 3.1.3 #### What's New diff --git a/app/src/main/java/com/google/android/material/bottomsheet/BackportBottomSheetBehavior.java b/app/src/main/java/com/google/android/material/bottomsheet/BackportBottomSheetBehavior.java index ab55a48dc..214f6ac62 100644 --- a/app/src/main/java/com/google/android/material/bottomsheet/BackportBottomSheetBehavior.java +++ b/app/src/main/java/com/google/android/material/bottomsheet/BackportBottomSheetBehavior.java @@ -1671,9 +1671,8 @@ public class BackportBottomSheetBehavior extends CoordinatorLayo @Nullable @VisibleForTesting View findScrollingChild(View view) { - if (view.getVisibility() != View.VISIBLE) { - return null; - } + // MODIFICATION: Remove visibility check that broke nested scrolling in the queue sheet + // due to it being set to invisible when completely hidden if (ViewCompat.isNestedScrollingEnabled(view)) { return view; }