mirror of
https://github.com/feather-wallet/feather.git
synced 2025-03-24 23:58:45 +00:00
Revert "Change default wallet dir to AppDataLocation"
This reverts commit 78ef5cbe6b
.
This commit is contained in:
parent
ddbc89f5e7
commit
0b2cc85c7f
1 changed files with 5 additions and 1 deletions
|
@ -149,7 +149,11 @@ QString defaultWalletDir() {
|
||||||
return path;
|
return path;
|
||||||
}
|
}
|
||||||
|
|
||||||
return QStandardPaths::writableLocation(QStandardPaths::AppDataLocation) + "/wallets";
|
#if defined(Q_OS_LINUX) or defined(Q_OS_MAC)
|
||||||
|
return QString("%1/Monero/wallets").arg(QDir::homePath());
|
||||||
|
#elif defined(Q_OS_WIN)
|
||||||
|
return QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation) + "/Monero/wallets";
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
QString ringDatabasePath() {
|
QString ringDatabasePath() {
|
||||||
|
|
Loading…
Reference in a new issue