From ec86ead09bc7a03e0f264dfc4e68c385d8bec7e3 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Mon, 9 Feb 2015 00:50:53 +0100 Subject: [PATCH 1/1] Make the AboutDlg layout slightly prettier Some italic font and some more whitespace make things so much nicer. --- src/qtui/aboutdlg.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/qtui/aboutdlg.cpp b/src/qtui/aboutdlg.cpp index 582fe932..b5b7c76d 100644 --- a/src/qtui/aboutdlg.cpp +++ b/src/qtui/aboutdlg.cpp @@ -74,7 +74,7 @@ QString AboutDlg::authors() const res.append("
" + person.prettyName() + "
"); if (!person.emailAddress().isEmpty()) res.append("" + person.emailAddress() + "
"); - res.append(person.task() + "
"); + res.append("" + person.task() + "
"); } res.append(""); return res; @@ -86,9 +86,9 @@ QString AboutDlg::contributors() const QString res; res = tr("We would like to thank the following contributors (in alphabetical order) and everybody we forgot to mention here:") + "
"; for (const auto &person : _aboutData->credits()) { - res.append("
" + person.prettyName() + "
" + person.task() + "
"); + res.append("
" + person.prettyName() + "
" + person.task() + "
"); } - res.append("

" + tr("...and anybody else finding and reporting bugs, giving feedback, helping others and being part of the community!")); + res.append("" + tr("...and anybody else finding and reporting bugs, giving feedback, helping others and being part of the community!")); return res; } @@ -100,13 +100,13 @@ QString AboutDlg::thanksTo() const res = tr("Special thanks goes to:
" "
" "
 John \"nox\" Hand
" - "
for the original Quassel icon - The All-Seeing Eye" + "
for the original Quassel icon - The All-Seeing Eye
" "
 The Oxygen Team
" - "
for creating all the artwork you see throughout Quassel
" + "
for creating all the artwork you see throughout Quassel
" "
 Qt Software formerly known as Trolltech
" - "
for creating Qt and Qtopia, and for sponsoring development of QuasselTopia with Greenphones and more
" + "
for creating Qt and Qtopia, and for sponsoring development of QuasselTopia with Greenphones and more
" "
" - "
for keeping Qt alive, and for sponsoring development of Quassel Mobile with N810s
" + "
for sponsoring development of Quassel Mobile with N810s
" ); return res; -- 2.20.1