diff options
Diffstat (limited to 'src/forms')
-rw-r--r-- | src/forms/aboutdialog.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/forms/aboutdialog.cpp b/src/forms/aboutdialog.cpp index 1b8c915..2fe312b 100644 --- a/src/forms/aboutdialog.cpp +++ b/src/forms/aboutdialog.cpp @@ -51,9 +51,10 @@ AboutDialog::AboutDialog(QWidget *parent) : #elif defined __GNUC__ "Compiled with GCC " __VERSION__ "<br>" #endif - "Configuration lives in %2" + "Configuration lives in %2<br>" + "Default configuration lives in %3" "</p>") - .arg(qApp->applicationLongVersion(), sSettings->filePath())); + .arg(qApp->applicationLongVersion(), sSettings->configurationPath(), sSettings->defaultsPath())); ui->toolBox->addItem(detailsLabel, tr("Details")); QLabel *libsLabel = new QLabel(this); |