Increase minLines on disappearing messages duration dialog

This isn't foolproof across all translations, but it's probably
the best we can do.

Fixes #5746

// FREEBIE
This commit is contained in:
Moxie Marlinspike 2016-10-05 16:17:10 -07:00
parent e6dd5db860
commit d36d000dc5

View file

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical" android:orientation="vertical"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
@ -25,8 +26,9 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_below="@id/expiration_number_picker" android:layout_below="@id/expiration_number_picker"
android:minLines="2" android:minLines="3"
android:padding="20dp"/> android:padding="20dp"
tools:text="Your messages will not expire."/>
</RelativeLayout> </RelativeLayout>