diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2017-07-01 16:16:10 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2017-07-01 16:16:10 +0200 |
commit | feb69af5c8c2517ea21398810ec9c603aef3032e (patch) | |
tree | 9e62351a4874bee700b63c518fd0b1b399432049 /src/forms | |
parent | Status bar height capped; loading bar now hides after 2s (diff) | |
download | smolbote-feb69af5c8c2517ea21398810ec9c603aef3032e.tar.xz |
Configuration defaults file
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); |