commit ae730cc8e5be921b92fe45652c35f2031dccfb4a
parent f8fd1c14dbc0da68d813eabde8de689e2ffc923f
Author: ThomasV <thomasv@electrum.org>
Date: Tue, 18 Apr 2017 15:11:58 +0200
fix #2360
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
@@ -1276,7 +1276,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
self.show_error(_('Invalid Amount'))
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
coins = self.get_coins()
return outputs, fee, label, coins