Allow scrolling within reader color filter sheet (fixes #4612)

This commit is contained in:
arkon 2021-03-13 15:20:07 -05:00
parent d1c2eaf6d5
commit 0657db7dcb

View file

@ -1,10 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:padding="16dp">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.widget.Space
android:id="@+id/spinner_end"
android:layout_width="16dp"
@ -239,3 +243,5 @@
app:layout_constraintGuide_percent="0.5" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>