For #8545: Fix unnecessary scroll in home screen

Changed the height of the recycler view inside the home fragment
to ‘wrap_content’ to avoid scrolling if the viewport is not filled
with elements.

Closes #8545
upstream-sync
VaishnaviShri 3 years ago committed by Mugurell
parent 8916e567bc
commit 3260cbd986

@ -65,7 +65,7 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/sessionControlRecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:clipChildren="false"
android:clipToPadding="false"
android:layout_marginBottom="48dp"

Loading…
Cancel
Save