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/KeyMgmt.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 '')
-rwxr-xr-x | src/ui/KeyMgmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/KeyMgmt.cpp b/src/ui/KeyMgmt.cpp index 6f9c64a2..0e2d9c9a 100755 --- a/src/ui/KeyMgmt.cpp +++ b/src/ui/KeyMgmt.cpp @@ -27,7 +27,7 @@ #include <utility> KeyMgmt::KeyMgmt(GpgME::GpgContext *ctx, QWidget *parent ) : - QMainWindow(parent), appPath(qApp->applicationDirPath()), settings(appPath + "/conf/gpgfrontend.ini", QSettings::IniFormat) + QMainWindow(parent), appPath(qApp->applicationDirPath()), settings(RESOURCE_DIR(appPath) + "/conf/gpgfrontend.ini", QSettings::IniFormat) { mCtx = ctx; |