1
0

save account name as label

This commit is contained in:
ThomasV
2013-08-17 11:46:19 +02:00
parent 2abf1b93cb
commit e995f7abfd
3 changed files with 11 additions and 13 deletions

View File

@@ -1268,7 +1268,7 @@ class ElectrumWindow(QMainWindow):
account_items = []
for k, account in account_items:
name = account.get_name()
name = self.wallet.labels.get(k, 'unnamed account')
c,u = self.wallet.get_account_balance(k)
account_item = QTreeWidgetItem( [ name, '', self.format_amount(c+u), ''] )
l.addTopLevelItem(account_item)