1
0
This commit is contained in:
ThomasV
2014-06-05 12:46:18 +02:00

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())