Merge pull request 'Set default wallet dir on Windows' (#5) from dsc/feather:fix-walletdir-windows into master

Reviewed-on: https://git.wownero.com/feather/feather/pulls/5
This commit is contained in:
dsc 2020-10-09 16:59:52 +00:00
commit f029820a37
1 changed files with 3 additions and 2 deletions

View File

@ -82,10 +82,11 @@ AppContext::AppContext(QCommandLineParser *cmdargs) {
this->defaultWalletDir = QString("%1/Monero/wallets").arg(this->configRoot);
this->defaultWalletDirRoot = QString("%1/Monero").arg(this->configRoot);
#elif defined(Q_OS_WIN)
// @TODO
this->defaultWalletDir = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation) + "/Monero";
this->defaultWalletDirRoot = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation);
#endif
// Create ~/Monero/wallets if it does not exist yet
// Create wallet dirs
if (!QDir().mkpath(defaultWalletDir))
qCritical() << "Unable to create dir: " << defaultWalletDir;