mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-03 17:39:54 +00:00
Merge pull request #3968
aac43e8
display wallet files with . in name (plowsof)
This commit is contained in:
commit
cb28263cb1
1 changed files with 2 additions and 2 deletions
|
@ -115,12 +115,12 @@ void WalletKeysFilesModel::findWallets(const QString &moneroAccountsDir)
|
||||||
QFileInfo keysFileinfo = it.fileInfo();
|
QFileInfo keysFileinfo = it.fileInfo();
|
||||||
|
|
||||||
constexpr const char keysFileExtension[] = "keys";
|
constexpr const char keysFileExtension[] = "keys";
|
||||||
if (!keysFileinfo.isFile() || keysFileinfo.completeSuffix() != keysFileExtension)
|
if (!keysFileinfo.isFile() || keysFileinfo.suffix() != keysFileExtension)
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
QString wallet(keysFileinfo.path() + QDir::separator() + keysFileinfo.baseName());
|
QString wallet(keysFileinfo.path() + QDir::separator() + keysFileinfo.completeBaseName());
|
||||||
quint8 networkType = NetworkType::MAINNET;
|
quint8 networkType = NetworkType::MAINNET;
|
||||||
QString address = QString("");
|
QString address = QString("");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue