Fix link colours in about dialog when using dark context view.

This commit is contained in:
craig.p.drummond
2013-05-24 20:13:30 +00:00
committed by craig.p.drummond
parent 0167a869e2
commit 99e53efd5e
2 changed files with 4 additions and 1 deletions

View File

@@ -50,6 +50,7 @@ public:
void update(const Song &s);
void showEvent(QShowEvent *e);
void paintEvent(QPaintEvent *e);
const QColor & normalLinkColor() const { return appLinkColor; }
Q_SIGNALS:
void findArtist(const QString &artist);

View File

@@ -1451,10 +1451,12 @@ void MainWindow::changeConnection()
void MainWindow::showAboutDialog()
{
QMessageBox::about(this, i18nc("Qt-only", "About Cantata"),
QLatin1String("<html><head><style type=text/css>a:link {color:")+context->normalLinkColor().name()+QLatin1String("; text-decoration:underline;}</style></head><body>")+
i18nc("Qt-only", "<b>Cantata %1</b><br/><br/>MPD client.<br/><br/>(c) Craig Drummond 2011-2013.<br/>Released under the <a href=\"http://www.gnu.org/licenses/gpl.html\">GPLv3</a><br/><br/>"
"<i><small>Based upon <a href=\"http://qtmpc.lowblog.nl\">QtMPC</a> - (C) 2007-2010 The QtMPC Authors<br/>"
"Context view backdrops courtesy of <a href=\"http://www.htbackdrops.com\">Home Theater Backdrops</a><br/>"
"Context view metadata courtesy of <a href=\"http://www.wikipedia.org\">Wikipedia</a></small></i>").arg(PACKAGE_VERSION_STRING));
"Context view metadata courtesy of <a href=\"http://www.wikipedia.org\">Wikipedia</a></small></i>").arg(PACKAGE_VERSION_STRING)+
QLatin1String("</body></html>"));
}
#endif