diff --git a/electrum/gui/qml/components/Wallets.qml b/electrum/gui/qml/components/Wallets.qml index 7d911a854..b8dcf5f18 100644 --- a/electrum/gui/qml/components/Wallets.qml +++ b/electrum/gui/qml/components/Wallets.qml @@ -58,11 +58,12 @@ Pane { height: row.height onClicked: { - if (!Daemon.currentWallet || Daemon.currentWallet.name != model.name) + if (!Daemon.currentWallet || Daemon.currentWallet.name != model.name) { if (!Daemon.loading) // wallet load in progress Daemon.loadWallet(model.path) - else + } else { app.stack.pop() + } } RowLayout {