From 97baf3d4863cb07130ad5daa1a4faa24ebf3a6cb Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Thu, 27 Apr 2023 11:54:53 -0400 Subject: [PATCH] Make the input area wrap automatically. --- main.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.qml b/main.qml index 57387b1e..7c6b35c0 100644 --- a/main.qml +++ b/main.qml @@ -864,7 +864,9 @@ Window { id: textInput color: theme.textColor padding: 20 + rightPadding: 40 enabled: LLM.isModelLoaded + wrapMode: Text.WordWrap font.pixelSize: theme.fontSizeLarge placeholderText: qsTr("Send a message...") placeholderTextColor: theme.backgroundLightest