diff --git a/lib/gui_lite.py b/lib/gui_lite.py index 8ba16b042..2e59115f1 100644 --- a/lib/gui_lite.py +++ b/lib/gui_lite.py @@ -320,7 +320,7 @@ class MiniWindow(QDialog): def check_button_status(self): """Check that the bitcoin address is valid and that something is entered in the amount before making the send button clickable.""" - if (self.address_input.property("isValid") == True and + if (self.address_input.property("isValid") and len(self.amount_input.text()) > 0): self.send_button.setDisabled(False) else: