This commit is contained in:
ThomasV 2014-06-05 12:46:18 +02:00
commit de46bcd515
1 changed files with 4 additions and 0 deletions

View File

@ -58,3 +58,7 @@ class AmountEdit(QLineEdit):
s = s[:p] + '.' + s[p:p+8]
self.setText(s)
self.setCursorPosition(pos)
def setAmount(self, amount):
self.setText(self.format_amount(self.wallet.fee).strip())