#102 - Show import dialog first
This commit is contained in:
@@ -648,10 +648,6 @@ void MainWindow::doImport(QList<QString>* keys) {
|
|||||||
|
|
||||||
if (keys->isEmpty()) {
|
if (keys->isEmpty()) {
|
||||||
delete keys;
|
delete keys;
|
||||||
|
|
||||||
QMessageBox::information(this,
|
|
||||||
"Imported", tr("The keys were imported. It may take several minutes to rescan the blockchain. Until then, functionality may be limited"),
|
|
||||||
QMessageBox::Ok);
|
|
||||||
ui->statusBar->showMessage(tr("Private key import rescan finished"));
|
ui->statusBar->showMessage(tr("Private key import rescan finished"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -784,7 +780,12 @@ void MainWindow::importPrivKey() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Start the import. The function takes ownership of keys
|
// Start the import. The function takes ownership of keys
|
||||||
doImport(keys);
|
QTimer::singleShot(1, [=]() {doImport(keys);});
|
||||||
|
|
||||||
|
// Show the dialog that keys will be imported.
|
||||||
|
QMessageBox::information(this,
|
||||||
|
"Imported", tr("The keys were imported. It may take several minutes to rescan the blockchain. Until then, functionality may be limited"),
|
||||||
|
QMessageBox::Ok);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user