From: Manuel Nickschas Date: Sun, 8 Feb 2015 23:50:53 +0000 (+0100) Subject: Make the AboutDlg layout slightly prettier X-Git-Tag: 0.12-beta1~21 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=ec86ead09bc7a03e0f264dfc4e68c385d8bec7e3 Make the AboutDlg layout slightly prettier Some italic font and some more whitespace make things so much nicer. --- 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;