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()
|
||||
{
|
||||
string vstring = Rcl::version_string() +
|
||||
string("<br><a href='https://www.recoll.org'>www.recoll.org</a>") +
|
||||
string("<br><a href='https://www.xapian.org'>www.xapian.org</a>");
|
||||
QMessageBox::information(this, tr("About Recoll"), vstring.c_str());
|
||||
QString vstring = QString("<html><head>") + prefs.reslistheadertext + "</head><body>" +
|
||||
u8s2qs(Rcl::version_string()) +
|
||||
"<br><a href='https://www.recoll.org'>www.recoll.org</a>" +
|
||||
"<br><a href='https://www.xapian.org'>www.xapian.org</a>";
|
||||
QMessageBox::information(this, tr("About Recoll"), vstring);
|
||||
}
|
||||
|
||||
void RclMain::showMissingHelpers()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user