From b92502ac63a0fe9c142b224633326c0481272fc1 Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Fri, 7 Jun 2019 05:00:23 -0700 Subject: [PATCH] Make pointer to data directory in System Information message box be clickable to open the directory. --- oscar/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oscar/main.cpp b/oscar/main.cpp index 1911fd48..6afdb308 100644 --- a/oscar/main.cpp +++ b/oscar/main.cpp @@ -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:") + " " + path + ""); QDir newDir(GetAppData()); #if QT_VERSION < QT_VERSION_CHECK(5,9,0)