diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-11-25 17:22:38 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-11-25 17:22:38 -0600 |
| commit | 148d487988b67a66e559d60fe9b6151c725f3c6f (patch) | |
| tree | fa00ecfeba480a62e093d3ec338adf781475024e /src/main/main.cpp | |
| parent | 7b137f76828c36f7fbe43beb92587cce049bbd28 (diff) | |
| parent | ec8cd137cc9592aa910e9829f8e9ce251488c70f (diff) | |
| download | monzero-gui-148d487988b67a66e559d60fe9b6151c725f3c6f.tar.gz monzero-gui-148d487988b67a66e559d60fe9b6151c725f3c6f.tar.xz monzero-gui-148d487988b67a66e559d60fe9b6151c725f3c6f.zip | |
Merge pull request #3245
ec8cd13 portable: use portable storage folder to store QML disk cache (xiphon)
Diffstat (limited to 'src/main/main.cpp')
| -rw-r--r-- | src/main/main.cpp | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/main/main.cpp b/src/main/main.cpp index 4035e194..79e172ca 100644 --- a/src/main/main.cpp +++ b/src/main/main.cpp @@ -190,6 +190,20 @@ int main(int argc, char *argv[]) // Turn off colors in monerod log output. qputenv("TERM", "goaway"); +#if defined(Q_OS_MACOS) + QDir::setCurrent(QDir(MacOSHelper::bundlePath() + QDir::separator() + "..").canonicalPath()); +#endif + + if (MoneroSettings::portableConfigExists()) + { + const QString cacheDir(MoneroSettings::portableFolderName() + QDir::separator() + ".cache"); + if (!qputenv("QML_DISK_CACHE_PATH", cacheDir.toUtf8())) + { + qCritical() << "Error: failed to set QML disk cache path"; + return 1; + } + } + MainApp app(argc, argv); #if defined(Q_OS_WIN) @@ -326,10 +340,6 @@ Verify update binary using 'shasum'-compatible (SHA256 algo) output signed by tw // start listening QTimer::singleShot(0, ipc, SLOT(bind())); -#if defined(Q_OS_MACOS) - QDir::setCurrent(QDir(MacOSHelper::bundlePath() + QDir::separator() + "..").canonicalPath()); -#endif - // screen settings // Mobile is designed on 128dpi qreal ref_dpi = 128; |
