diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 38275adf2..f816599e1 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -954,6 +954,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): self.amount_e.shortcut.connect(self.spend_max) self.payto_e.textChanged.connect(self.update_fee) self.amount_e.textEdited.connect(self.update_fee) + self.amount_e.textEdited.connect(self.reset_max) def entry_changed(): text = "" @@ -1015,6 +1016,9 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): self.amount_e.textEdited.emit("") self.is_max = True + def reset_max(self): + self.is_max = False + def update_fee(self): self.require_fee_update = True