mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2024-10-01 01:06:10 -04:00
Restrict the chat view text width to a reasonable maximum.
Signed-off-by: Adam Treat <treat.adam@gmail.com>
This commit is contained in:
parent
6adaa672b4
commit
171f4e488e
@ -1012,7 +1012,10 @@ Window {
|
|||||||
ListView {
|
ListView {
|
||||||
id: listView
|
id: listView
|
||||||
visible: ModelList.installedModels.count !== 0 && chatModel.count !== 0
|
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
|
model: chatModel
|
||||||
|
|
||||||
ScrollBar.vertical: ScrollBar {
|
ScrollBar.vertical: ScrollBar {
|
||||||
|
Loading…
Reference in New Issue
Block a user