mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-16 15:39:51 +00:00
Show more decimals in Lite GUI
This commit is contained in:
parent
7d3fea6a19
commit
c5047d4168
1 changed files with 1 additions and 1 deletions
|
@ -494,7 +494,7 @@ class MiniWindow(QDialog):
|
|||
quote_text = self.create_quote_text(btc_balance)
|
||||
if quote_text:
|
||||
quote_text = "(%s)" % quote_text
|
||||
btc_balance = "%.2f" % (btc_balance / bitcoin(1))
|
||||
btc_balance = "%.4f" % (btc_balance / bitcoin(1))
|
||||
self.balance_label.set_balance_text(btc_balance, quote_text)
|
||||
self.setWindowTitle("Electrum %s - %s BTC" % (electrum_version, btc_balance))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue