Dark mode: use style sheet to fix link color in "About" dialog
This commit is contained in:
parent
44c4cc1826
commit
a6e30371a4
@ -331,10 +331,11 @@ void RclMain::showExtIdxDialog()
|
|||||||
|
|
||||||
void RclMain::showAboutDialog()
|
void RclMain::showAboutDialog()
|
||||||
{
|
{
|
||||||
string vstring = Rcl::version_string() +
|
QString vstring = QString("<html><head>") + prefs.reslistheadertext + "</head><body>" +
|
||||||
string("<br><a href='https://www.recoll.org'>www.recoll.org</a>") +
|
u8s2qs(Rcl::version_string()) +
|
||||||
string("<br><a href='https://www.xapian.org'>www.xapian.org</a>");
|
"<br><a href='https://www.recoll.org'>www.recoll.org</a>" +
|
||||||
QMessageBox::information(this, tr("About Recoll"), vstring.c_str());
|
"<br><a href='https://www.xapian.org'>www.xapian.org</a>";
|
||||||
|
QMessageBox::information(this, tr("About Recoll"), vstring);
|
||||||
}
|
}
|
||||||
|
|
||||||
void RclMain::showMissingHelpers()
|
void RclMain::showMissingHelpers()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user