Make pointer to data directory in System Information message box be clickable to open the directory.

This commit is contained in:
Seeker4 2019-06-07 05:00:23 -07:00
parent 8dd04397cc
commit b92502ac63

View File

@ -478,8 +478,8 @@ int main(int argc, char *argv[]) {
qDebug() << "Using " + GetAppData() + " as OSCAR data folder";
addBuildInfo("");
addBuildInfo(QObject::tr("Data directory:") + " " + GetAppData());
QString path = GetAppData();
addBuildInfo(QObject::tr("Data directory:") + " <a href=\"file:///" + path + "\">" + path + "</a>");
QDir newDir(GetAppData());
#if QT_VERSION < QT_VERSION_CHECK(5,9,0)