aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2017-12-23 21:45:08 +0100
committerChristian Schneppe <christian@pix-art.de>2017-12-23 21:45:08 +0100
commitf87067131339803abac51b2c6b2bc5007be7542a (patch)
tree14646749da39152b8e30dd61be9765ee2ce3fb70 /src
parent11a4291585d9aaf8daf2c9324774bc589790c36f (diff)
limit height of input field to 6 lines
Diffstat (limited to 'src')
-rw-r--r--src/main/res/layout/fragment_conversation.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/res/layout/fragment_conversation.xml b/src/main/res/layout/fragment_conversation.xml
index b40567750..f75e9a2d8 100644
--- a/src/main/res/layout/fragment_conversation.xml
+++ b/src/main/res/layout/fragment_conversation.xml
@@ -46,7 +46,7 @@
android:inputType="textShortMessage|textMultiLine|textCapSentences"
android:minHeight="48dp"
android:minLines="1"
- android:maxLines="4"
+ android:maxLines="6"
android:paddingBottom="12dp"
android:paddingLeft="8dp"
android:paddingRight="8dp"