Skip to content

Commit

Permalink
Merge #900: [UI] Fix improperly parented walletView and segmentation …
Browse files Browse the repository at this point in the history
…fault on QT 5.10

a4205f2 [UI] Fix improperly parented walletView. (Julian Meyer)

Tree-SHA512: ba523274a9e336a884f097dcff5a0e47e294517254350287dd0c2572c63010e63a33734707bcdca753f454f85c4bbe052817172b719e7ac66bcdbdef71d151a2
  • Loading branch information
Mrs-X authored and akshaynexus committed May 19, 2019
1 parent ba5debc commit 9637872
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 9637872

Please sign in to comment.