mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-02 18:25:21 +00:00
minor fix (lower or equal)
This commit is contained in:
parent
5f30348d62
commit
6015a91c70
1 changed files with 1 additions and 1 deletions
|
@ -763,7 +763,7 @@ class ElectrumWindow(QMainWindow):
|
|||
date = format_time(timestamp)
|
||||
account = self.wallet.get_account_name(self.wallet.get_account_from_address(address))
|
||||
amount_str = self.format_amount(amount) if amount else ""
|
||||
paid = amount < self.wallet.get_addr_received(address)
|
||||
paid = amount <= self.wallet.get_addr_received(address)
|
||||
status = PR_PAID if paid else PR_UNPAID
|
||||
item = QTreeWidgetItem( [ date, account, address, message, amount_str, pr_tooltips[status]])
|
||||
item.setFont(2, QFont(MONOSPACE_FONT))
|
||||
|
|
Loading…
Add table
Reference in a new issue