From 7868c3fe70d124d11b6384fee44acc7e00ea4835 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Mon, 27 Aug 2018 21:41:22 -0400 Subject: [PATCH] Added double spacing between message lines --- mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index e1dbf14..3d4a8d1 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -5835,6 +5835,7 @@ int MainWindow::writeMessageTextToUI(QDateTime date, QString text, int freq, boo if(bold){ text = QString("%1").arg(text); } + c.insertBlock(); c.insertHtml(QString("%1 - (%2) - %3").arg(date.time().toString()).arg(freq).arg(text)); }