Skip to content

Commit

Permalink
[UI] Fix improperly parented walletView.
Browse files Browse the repository at this point in the history
Fixes #789.
  • Loading branch information
meyer9 committed May 15, 2019
1 parent 81038da commit a4205f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/walletframe.cpp
Expand Up @@ -42,7 +42,7 @@ bool WalletFrame::addWallet(const QString& name, WalletModel* walletModel)
if (!gui || !clientModel || !walletModel || mapWalletViews.count(name) > 0)
return false;

WalletView* walletView = new WalletView(this);
WalletView* walletView = new WalletView(walletStack);
walletView->setBitcoinGUI(gui);
walletView->setClientModel(clientModel);
walletView->setWalletModel(walletModel);
Expand Down

0 comments on commit a4205f2

Please sign in to comment.