aboutsummaryrefslogtreecommitdiff
path: root/src/qt
diff options
context:
space:
mode:
authorJon Atack <jon@atack.com>2019-09-07 12:07:54 +0200
committerJon Atack <jon@atack.com>2019-09-09 11:04:32 +0200
commitcad3ab5db835e1d0c44c6a5fc0e4b2d1661dcd5c (patch)
tree6dcacc47bdae56fb8f7f75a6d88b07a22e1196d7 /src/qt
parent539d9403af956c76ae0149a58c07c71a6b58ac69 (diff)
downloadbitcoin-cad3ab5db835e1d0c44c6a5fc0e4b2d1661dcd5c.tar.xz
gui: fix autofocus in CreateWalletActivity::askPassphrase()
Diffstat (limited to 'src/qt')
-rw-r--r--src/qt/bitcoingui.cpp4
-rw-r--r--src/qt/walletcontroller.cpp1
2 files changed, 4 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp
index c672171cfb..7671fde705 100644
--- a/src/qt/bitcoingui.cpp
+++ b/src/qt/bitcoingui.cpp
@@ -375,7 +375,9 @@ void BitcoinGUI::createActions()
for (const std::pair<const std::string, bool>& i : m_wallet_controller->listWalletDir()) {
const std::string& path = i.first;
QString name = path.empty() ? QString("["+tr("default wallet")+"]") : QString::fromStdString(path);
- // Menu items remove single &. Single & are shown when && is in the string, but only the first occurrence. So replace only the first & with &&
+ // Menu items remove single &. Single & are shown when && is in
+ // the string, but only the first occurrence. So replace only
+ // the first & with &&.
name.replace(name.indexOf(QChar('&')), 1, QString("&&"));
QAction* action = m_open_wallet_menu->addAction(name);
diff --git a/src/qt/walletcontroller.cpp b/src/qt/walletcontroller.cpp
index 4fab3752e1..fa6f9f3f16 100644
--- a/src/qt/walletcontroller.cpp
+++ b/src/qt/walletcontroller.cpp
@@ -182,6 +182,7 @@ CreateWalletActivity::~CreateWalletActivity()
void CreateWalletActivity::askPassphrase()
{
m_passphrase_dialog = new AskPassphraseDialog(AskPassphraseDialog::Encrypt, m_parent_widget, &m_passphrase);
+ m_passphrase_dialog->setWindowModality(Qt::ApplicationModal);
m_passphrase_dialog->show();
connect(m_passphrase_dialog, &QObject::destroyed, [this] {