Restrict the chat view text width to a reasonable maximum.

Signed-off-by: Adam Treat <treat.adam@gmail.com>
pull/2053/head
Adam Treat 7 months ago committed by AT
parent 6adaa672b4
commit 171f4e488e

@ -1012,7 +1012,10 @@ Window {
ListView {
id: listView
visible: ModelList.installedModels.count !== 0 && chatModel.count !== 0
anchors.fill: parent
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.horizontalCenter: parent.horizontalCenter
width: Math.min(1280, parent.width)
model: chatModel
ScrollBar.vertical: ScrollBar {

Loading…
Cancel
Save