Skip to content

Commit

Permalink
always highlight log lines with Process started (#3873)
Browse files Browse the repository at this point in the history
  • Loading branch information
octaeder authored Nov 11, 2024
1 parent 5471024 commit f5e4360
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loghighlighter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void LogHighlighter::highlightBlock(const QString &text)
setFormat(0, text.length(), LatexLogEntry::textColor(LT_WARNING));
} else if (text.startsWith(". ") || text.indexOf(rxOnlyDots)==0) {
setFormat(0, text.length(), LatexLogEntry::textColor(LT_INFO));
} else if (text.indexOf(".tex", 0) != -1 && !text.startsWith("Error:")) {
} else if ( ( text.indexOf(".tex", 0) != -1 || text.indexOf(tr("Process started:"), 0) != -1 ) && !text.startsWith("Error:")) {
setFormat(0, text.length(), ColorFile);
}
}

0 comments on commit f5e4360

Please sign in to comment.