use TextField onEditingFinished instead of onAccepted

this will save settings on defocus instead of only
on pressing enter

Closes https://github.com/nomic-ai/gpt4all/issues/440
This commit is contained in:
Aaron Miller 2023-04-25 08:40:19 -07:00 committed by AT
parent 15a979b327
commit b72cf40878

View File

@ -152,7 +152,7 @@ The prompt below is a question to answer, a task to complete, or a conversation
Layout.row: 0 Layout.row: 0
Layout.column: 1 Layout.column: 1
validator: DoubleValidator { } validator: DoubleValidator { }
onAccepted: { onEditingFinished: {
var val = parseFloat(text) var val = parseFloat(text)
if (!isNaN(val)) { if (!isNaN(val)) {
settings.temperature = val settings.temperature = val
@ -187,7 +187,7 @@ The prompt below is a question to answer, a task to complete, or a conversation
Layout.row: 1 Layout.row: 1
Layout.column: 1 Layout.column: 1
validator: DoubleValidator {} validator: DoubleValidator {}
onAccepted: { onEditingFinished: {
var val = parseFloat(text) var val = parseFloat(text)
if (!isNaN(val)) { if (!isNaN(val)) {
settings.topP = val settings.topP = val
@ -222,7 +222,7 @@ The prompt below is a question to answer, a task to complete, or a conversation
Layout.row: 2 Layout.row: 2
Layout.column: 1 Layout.column: 1
validator: IntValidator { bottom: 1 } validator: IntValidator { bottom: 1 }
onAccepted: { onEditingFinished: {
var val = parseInt(text) var val = parseInt(text)
if (!isNaN(val)) { if (!isNaN(val)) {
settings.topK = val settings.topK = val
@ -257,7 +257,7 @@ The prompt below is a question to answer, a task to complete, or a conversation
Layout.row: 3 Layout.row: 3
Layout.column: 1 Layout.column: 1
validator: IntValidator { bottom: 1 } validator: IntValidator { bottom: 1 }
onAccepted: { onEditingFinished: {
var val = parseInt(text) var val = parseInt(text)
if (!isNaN(val)) { if (!isNaN(val)) {
settings.maxLength = val settings.maxLength = val
@ -293,7 +293,7 @@ The prompt below is a question to answer, a task to complete, or a conversation
Layout.row: 4 Layout.row: 4
Layout.column: 1 Layout.column: 1
validator: IntValidator { bottom: 1 } validator: IntValidator { bottom: 1 }
onAccepted: { onEditingFinished: {
var val = parseInt(text) var val = parseInt(text)
if (!isNaN(val)) { if (!isNaN(val)) {
settings.promptBatchSize = val settings.promptBatchSize = val
@ -328,7 +328,7 @@ The prompt below is a question to answer, a task to complete, or a conversation
Layout.row: 5 Layout.row: 5
Layout.column: 1 Layout.column: 1
validator: DoubleValidator {} validator: DoubleValidator {}
onAccepted: { onEditingFinished: {
var val = parseFloat(text) var val = parseFloat(text)
if (!isNaN(val)) { if (!isNaN(val)) {
settings.repeatPenalty = val settings.repeatPenalty = val
@ -363,7 +363,7 @@ The prompt below is a question to answer, a task to complete, or a conversation
Layout.row: 6 Layout.row: 6
Layout.column: 1 Layout.column: 1
validator: IntValidator { bottom: 1 } validator: IntValidator { bottom: 1 }
onAccepted: { onEditingFinished: {
var val = parseInt(text) var val = parseInt(text)
if (!isNaN(val)) { if (!isNaN(val)) {
settings.repeatPenaltyTokens = val settings.repeatPenaltyTokens = val
@ -515,7 +515,7 @@ The prompt below is a question to answer, a task to complete, or a conversation
Layout.row: 2 Layout.row: 2
Layout.column: 1 Layout.column: 1
validator: IntValidator { bottom: 1 } validator: IntValidator { bottom: 1 }
onAccepted: { onEditingFinished: {
var val = parseInt(text) var val = parseInt(text)
if (!isNaN(val)) { if (!isNaN(val)) {
settingsDialog.threadCount = val settingsDialog.threadCount = val