mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-06-26 15:31:55 +00:00
Fix padding.
This commit is contained in:
parent
6b55a48068
commit
df86980002
5
main.qml
5
main.qml
@ -69,7 +69,7 @@ Window {
|
|||||||
color: "#d1d5db"
|
color: "#d1d5db"
|
||||||
padding: 20
|
padding: 20
|
||||||
font.pixelSize: 24
|
font.pixelSize: 24
|
||||||
text: "Model: GPT-J-6B-4bit"
|
text: "Model: GPT4ALL-J-6B-4bit"
|
||||||
background: Rectangle {
|
background: Rectangle {
|
||||||
color: "#444654"
|
color: "#444654"
|
||||||
}
|
}
|
||||||
@ -152,7 +152,8 @@ Window {
|
|||||||
anchors.leftMargin: 15
|
anchors.leftMargin: 15
|
||||||
source: LLM.responseInProgress ? "qrc:/gpt4all-chat/icons/stop_generating.svg" : "qrc:/gpt4all-chat/icons/regenerate.svg"
|
source: LLM.responseInProgress ? "qrc:/gpt4all-chat/icons/stop_generating.svg" : "qrc:/gpt4all-chat/icons/regenerate.svg"
|
||||||
}
|
}
|
||||||
text: LLM.responseInProgress ? qsTr(" Stop generating") : qsTr(" Regenerate response")
|
leftPadding: 50
|
||||||
|
text: LLM.responseInProgress ? qsTr("Stop generating") : qsTr("Regenerate response")
|
||||||
onClicked: {
|
onClicked: {
|
||||||
if (LLM.responseInProgress)
|
if (LLM.responseInProgress)
|
||||||
LLM.stopGenerating()
|
LLM.stopGenerating()
|
||||||
|
Loading…
Reference in New Issue
Block a user