diff options
author | Saturneric <[email protected]> | 2021-06-25 21:28:27 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-06-25 21:28:27 +0000 |
commit | 4870b452c90b50c3ec67c773b617d3fb1b8c0ee0 (patch) | |
tree | 2bf5714d6c5fe1eabcdcba7eac074f3fa7fabc3b /src/ui/KeyUploadDialog.cpp | |
parent | Merge; (diff) | |
download | GpgFrontend-4870b452c90b50c3ec67c773b617d3fb1b8c0ee0.tar.gz GpgFrontend-4870b452c90b50c3ec67c773b617d3fb1b8c0ee0.zip |
Update CMakeLists.txt;
Change Resource File Loading Path For macOS
Diffstat (limited to '')
-rw-r--r-- | src/ui/KeyUploadDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/KeyUploadDialog.cpp b/src/ui/KeyUploadDialog.cpp index a81ed7a4..6ee6aa78 100644 --- a/src/ui/KeyUploadDialog.cpp +++ b/src/ui/KeyUploadDialog.cpp @@ -28,7 +28,7 @@ KeyUploadDialog::KeyUploadDialog(GpgME::GpgContext *ctx, const QVector<GpgKey> &keys, QWidget *parent) : appPath(qApp->applicationDirPath()), -settings(appPath + "/conf/gpgfrontend.ini", QSettings::IniFormat), +settings(RESOURCE_DIR(appPath) + "/conf/gpgfrontend.ini", QSettings::IniFormat), QDialog(parent) { ctx->exportKeys(keys, mKeyData); uploadKeyToServer(mKeyData); |