mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2024-10-01 01:06:10 -04:00
chatviewtextprocessor: fix missing #include and simplify sort
Signed-off-by: Jared Van Bortel <jared@nomic.ai>
This commit is contained in:
parent
f6f265f968
commit
1712830228
@ -23,6 +23,9 @@
|
|||||||
#include <Qt>
|
#include <Qt>
|
||||||
#include <QtGlobal>
|
#include <QtGlobal>
|
||||||
|
|
||||||
|
#include <algorithm>
|
||||||
|
#include <functional>
|
||||||
|
|
||||||
enum Language {
|
enum Language {
|
||||||
None,
|
None,
|
||||||
Python,
|
Python,
|
||||||
@ -1191,9 +1194,7 @@ void ChatViewTextProcessor::handleMarkdown()
|
|||||||
|
|
||||||
|
|
||||||
if (!hasAlreadyProcessedMarkdown) {
|
if (!hasAlreadyProcessedMarkdown) {
|
||||||
std::sort(codeBlockPositions.begin(), codeBlockPositions.end(), [](const QPair<int, int> &a, const QPair<int, int> &b) {
|
std::sort(codeBlockPositions.begin(), codeBlockPositions.end(), std::greater<>());
|
||||||
return a.first > b.first;
|
|
||||||
});
|
|
||||||
|
|
||||||
int lastIndex = doc->characterCount() - 1;
|
int lastIndex = doc->characterCount() - 1;
|
||||||
for (const auto &pos : codeBlockPositions) {
|
for (const auto &pos : codeBlockPositions) {
|
||||||
|
Loading…
Reference in New Issue
Block a user