mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-29 08:21:27 +00:00
fix #2360
This commit is contained in:
parent
f8fd1c14db
commit
ae730cc8e5
1 changed files with 1 additions and 1 deletions
|
@ -1276,7 +1276,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
|
||||||
self.show_error(_('Invalid Amount'))
|
self.show_error(_('Invalid Amount'))
|
||||||
return
|
return
|
||||||
|
|
||||||
freeze_fee = (self.fee_e.isModified() and (self.fee_e.text() or self.fee_e.hasFocus()))
|
freeze_fee = self.fee_e.isVisible() and self.fee_e.isModified() and (self.fee_e.text() or self.fee_e.hasFocus())
|
||||||
fee = self.fee_e.get_amount() if freeze_fee else None
|
fee = self.fee_e.get_amount() if freeze_fee else None
|
||||||
coins = self.get_coins()
|
coins = self.get_coins()
|
||||||
return outputs, fee, label, coins
|
return outputs, fee, label, coins
|
||||||
|
|
Loading…
Add table
Reference in a new issue