mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
fix #3016
This commit is contained in:
parent
5c1da002ad
commit
b80eacf7bf
1 changed files with 5 additions and 2 deletions
|
@ -151,7 +151,10 @@ class TxDialog(QDialog, MessageBoxMixin):
|
||||||
event.ignore()
|
event.ignore()
|
||||||
else:
|
else:
|
||||||
event.accept()
|
event.accept()
|
||||||
|
try:
|
||||||
dialogs.remove(self)
|
dialogs.remove(self)
|
||||||
|
except ValueError:
|
||||||
|
pass # was not in list already
|
||||||
|
|
||||||
def show_qr(self):
|
def show_qr(self):
|
||||||
text = bfh(str(self.tx))
|
text = bfh(str(self.tx))
|
||||||
|
|
Loading…
Add table
Reference in a new issue