mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-09 20:39:58 +00:00
Wizard: fix wallet open
This commit is contained in:
parent
3442c4fc69
commit
3eb9412dc7
1 changed files with 3 additions and 2 deletions
|
@ -61,8 +61,9 @@ void PageOpenWallet::updatePath() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_walletFile = index.model()->data(index.siblingAtColumn(WalletKeysFilesModel::Path), Qt::DisplayRole).toString();
|
m_walletFile = index.model()->data(index.siblingAtColumn(WalletKeysFilesModel::Path), Qt::UserRole).toString();
|
||||||
ui->linePath->setText(m_walletFile);
|
QString path = index.model()->data(index.siblingAtColumn(WalletKeysFilesModel::Path), Qt::DisplayRole).toString();
|
||||||
|
ui->linePath->setText(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
int PageOpenWallet::nextId() const {
|
int PageOpenWallet::nextId() const {
|
||||||
|
|
Loading…
Reference in a new issue