fix #3619: set correct parent window

This commit is contained in:
ThomasV 2018-01-12 12:13:19 +01:00
parent 322d1bd1d0
commit a94789b8ef
1 changed files with 1 additions and 1 deletions

View File

@ -93,6 +93,6 @@ class AddressDialog(WindowModalDialog):
def show_qr(self):
text = self.address
try:
self.parent.show_qrcode(text, 'Address')
self.parent.show_qrcode(text, 'Address', parent=self)
except Exception as e:
self.show_message(str(e))