From fb1aac2272184d54cf6b0a4e178eec6820282f04 Mon Sep 17 00:00:00 2001 From: Zbynek Moravec Date: Thu, 20 Aug 2015 18:18:06 +0200 Subject: [PATCH] Add padding to cell of Diagnostics output --- src/DiagnosticsDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DiagnosticsDialog.cpp b/src/DiagnosticsDialog.cpp index c0cedc69..86192f6e 100644 --- a/src/DiagnosticsDialog.cpp +++ b/src/DiagnosticsDialog.cpp @@ -131,7 +131,7 @@ void DiagnosticsDialog::pushMessage(MessageSeverity severity, const QString& ful std::cerr << stime << " | " << strSeverity.toUtf8().constData() << " | " << fullMessage.toUtf8().constData() << std::endl; mUI.messages->append( - QString("
%1 
%3 
%4
\n") + QString("
%1 
%3 
%4
\n") .arg(stime, bgCol, strSeverity, fullMessage) ); }