Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #39 from ybznek/v0.8
Browse files Browse the repository at this point in the history
Add padding to cell of Diagnostics output
  • Loading branch information
mpreisler committed Aug 20, 2015
2 parents 65f1d97 + fb1aac2 commit a794af4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DiagnosticsDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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("<table><tr><td><pre>%1 </pre></td><td style=\"background: %2\"><pre>%3 </pre></td><td>%4</td></tr></table>\n")
QString("<table><tr><td style=\"padding:5px 0px 0px 5px\"><pre>%1 </pre></td><td style=\"background: %2; padding:5px\"><pre>%3 </pre></td><td>%4</td></tr></table>\n")
.arg(stime, bgCol, strSeverity, fullMessage)
);
}
Expand Down

0 comments on commit a794af4

Please sign in to comment.