diff options
author | link2xt <link2xt@testrun.org> | 2021-03-20 08:12:32 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2021-03-20 08:12:32 +0300 |
commit | a6300a317f4adc20bda9f9e2e33dca1b17f00f84 (patch) | |
tree | 65f8bc30d2ec9fbf606cdfe376530e0fd4c58c62 /qml/ChatPage.qml | |
parent | a72bec0f11e4d794b04bd9c272dbf2997294333b (diff) | |
download | kdeltachat-a6300a317f4adc20bda9f9e2e33dca1b17f00f84.tar.gz kdeltachat-a6300a317f4adc20bda9f9e2e33dca1b17f00f84.zip |
Replace TextField with TextArea to allow sending multiline messages
Diffstat (limited to 'qml/ChatPage.qml')
-rw-r--r-- | qml/ChatPage.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qml/ChatPage.qml b/qml/ChatPage.qml index 1a6eec7..f7abea1 100644 --- a/qml/ChatPage.qml +++ b/qml/ChatPage.qml @@ -92,7 +92,7 @@ Kirigami.ScrollablePage { RowLayout { width: parent.width - TextField { + TextArea { id: messageField Layout.fillWidth: true |