mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-06-28 16:27:31 +00:00
Fix regenerate response with references.
This commit is contained in:
parent
f76df0deac
commit
7c28e79644
@ -367,9 +367,14 @@ void ResponseText::handleTextChanged()
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
m_isProcessingText = true;
|
m_isProcessingText = true;
|
||||||
QTextDocument* doc = m_textDocument->textDocument();
|
|
||||||
handleContextLinks();
|
handleContextLinks();
|
||||||
handleCodeBlocks();
|
handleCodeBlocks();
|
||||||
|
// We insert an invisible char at the end to make sure the document goes back to the default
|
||||||
|
// text format
|
||||||
|
QTextDocument* doc = m_textDocument->textDocument();
|
||||||
|
QTextCursor cursor(doc);
|
||||||
|
QString invisibleCharacter = QString(QChar(0xFEFF));
|
||||||
|
cursor.insertText(invisibleCharacter, QTextCharFormat());
|
||||||
m_isProcessingText = false;
|
m_isProcessingText = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user