-
Notifications
You must be signed in to change notification settings - Fork 731
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make the font size selection dialog scrollable #4201
Conversation
Wrap the LinearLayout inside a ScrollView.
Thanks for the PR, can you add a file for the changelog as per https://github.com/vector-im/element-android/blob/develop/CONTRIBUTING.md#changelog please? |
Sure, I added |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
android:id="@+id/text_selection_tiny_text_view" | ||
android:layout_height="match_parent"> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
xmlns
declaration can be removed from this LinearLayout now.
Can you also check the error(s) reported by the CI please? Thanks! |
Description
On small devices, it is difficult to pick the "Huge" font size, as the list is not scrollable.
This trivial PR wraps the
LinearLayout
in aScrollView
.Pull Request Checklist
I can provide a screenshot, but I don't know what to show.
Signed-off-by: David Terrell [email protected]