fixed indentatioin to use 4 spaces, not 2

This commit is contained in:
Amir Taaki 2012-08-13 20:54:11 +01:00
parent 6f3271f565
commit 2993f2313f
1 changed files with 5 additions and 5 deletions

View File

@ -303,11 +303,11 @@ class MiniWindow(QDialog):
self.amount_input.setText("")
def check_button_status(self):
if (self.address_input.property("isValid") is True and
len(self.amount_input.text()) > 0):
self.send_button.setDisabled(False)
else:
self.send_button.setDisabled(True)
if (self.address_input.property("isValid") is True and
len(self.amount_input.text()) > 0):
self.send_button.setDisabled(False)
else:
self.send_button.setDisabled(True)
def address_field_changed(self, address):
if self.actuator.is_valid(address):