1
0
Fork 0

Replace \r\n before \n in LogView

This commit is contained in:
Duncan Ogilvie 2025-01-17 12:37:34 +01:00
parent 847765e935
commit 1fa446406d
1 changed files with 1 additions and 1 deletions

View File

@ -343,8 +343,8 @@ void LogView::addMsgToLogSlotRaw(QByteArray msg, bool encodeHTML)
}
else
{
msgUtf16.replace(QChar('\n'), QString("<br/>\n"));
msgUtf16.replace(QString("\r\n"), QString("<br/>\n"));
msgUtf16.replace(QChar('\n'), QString("<br/>\n"));
}
if(encodeHTML)
{