mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-17 01:37:53 +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;
|
||||
}
|
||||
|
||||
m_walletFile = index.model()->data(index.siblingAtColumn(WalletKeysFilesModel::Path), Qt::DisplayRole).toString();
|
||||
ui->linePath->setText(m_walletFile);
|
||||
m_walletFile = index.model()->data(index.siblingAtColumn(WalletKeysFilesModel::Path), Qt::UserRole).toString();
|
||||
QString path = index.model()->data(index.siblingAtColumn(WalletKeysFilesModel::Path), Qt::DisplayRole).toString();
|
||||
ui->linePath->setText(path);
|
||||
}
|
||||
|
||||
int PageOpenWallet::nextId() const {
|
||||
|
|
Loading…
Reference in a new issue