Fix regenerate response with references.

pull/1024/head
Adam Treat 1 year ago
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…
Cancel
Save