NOISSUE Markdown is not available in Qt 5.4 ... who would have thought?

This commit is contained in:
Petr Mrázek 2021-08-20 01:57:59 +02:00
parent 1b68d51da6
commit 50b92c1af2
3 changed files with 5 additions and 5 deletions

View file

@ -77,10 +77,10 @@ void LoginDialog::onTaskFailed(const QString &reason)
QString processed;
for(auto line: lines) {
if(line.size()) {
processed += "<font color='red'>" + line + "</font>\n";
processed += "<font color='red'>" + line + "</font><br />";
}
else {
processed += '\n';
processed += "<br />";
}
}
ui->label->setText(processed);