mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
Fix send button not activating
This commit is contained in:
parent
894ea725e9
commit
7d7a32e1ad
1 changed files with 1 additions and 1 deletions
|
@ -296,7 +296,7 @@ class MiniWindow(QDialog):
|
|||
self.amount_input.setText("")
|
||||
|
||||
def check_button_status(self):
|
||||
if (self.address_input.property("isValid") is True and
|
||||
if (self.address_input.property("isValid") == True and
|
||||
len(self.amount_input.text()) > 0):
|
||||
self.send_button.setDisabled(False)
|
||||
else:
|
||||
|
|
Loading…
Add table
Reference in a new issue