mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-09-05 18:40:50 +00:00
fixups for GPT4All v3.5.0-rc2 (#3239)
Signed-off-by: Jared Van Bortel <jared@nomic.ai>
This commit is contained in:
@@ -599,7 +599,14 @@ GridLayout {
|
||||
Layout.fillWidth: false
|
||||
name: editingDisabledReason ?? qsTr("Redo")
|
||||
source: "qrc:/gpt4all/icons/regenerate.svg"
|
||||
onClicked: redoResponseDialog.open()
|
||||
onClicked: {
|
||||
if (index == chatModel.count - 1) {
|
||||
// regenerate last message without confirmation
|
||||
currentChat.regenerateResponse(index);
|
||||
return;
|
||||
}
|
||||
redoResponseDialog.open();
|
||||
}
|
||||
}
|
||||
|
||||
ChatMessageButton {
|
||||
|
Reference in New Issue
Block a user