Merge pull request #4201 from koh6uawi/scroll_select_font_size

Make the font size selection dialog scrollable
This commit is contained in:
Benoit Marty 2021-10-12 18:33:11 +02:00 committed by GitHub
commit 37dbaadbcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 77 additions and 72 deletions

1
changelog.d/4201.bugfix Normal file
View File

@ -0,0 +1 @@
Make the font size selection dialog scrollable

View File

@ -1,9 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/text_selection_group_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingStart="?dialogPreferredPadding"
android:paddingTop="12dp"
@ -81,3 +84,4 @@
android:text="@string/huge"
android:textSize="22dp" />
</LinearLayout>
</ScrollView>