From 90bc93ce2d0e75835d83327db5e300153c4a8efd Mon Sep 17 00:00:00 2001
From: Inso <insomniak.fr@gmail.com>
Date: Mon, 9 Feb 2015 21:56:50 +0100
Subject: [PATCH] Removed payments as negative values

---
 src/cutecoin/models/txhistory.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cutecoin/models/txhistory.py b/src/cutecoin/models/txhistory.py
index 24db0bc3..fdd5aa88 100644
--- a/src/cutecoin/models/txhistory.py
+++ b/src/cutecoin/models/txhistory.py
@@ -72,7 +72,7 @@ class TxFilterProxyModel(QSortFilterProxyModel):
                 return date.date()
             if source_index.column() == self.sourceModel().columns.index('Payment'):
                 if source_data is not "":
-                    amount_ref = self.account.units_to_ref(-source_data, self.community)
+                    amount_ref = self.account.units_to_ref(source_data, self.community)
                     ref_name = self.account.ref_name(self.community.short_currency)
                     return "{0:.2f} {1}".format(amount_ref, ref_name)
             if source_index.column() == self.sourceModel().columns.index('Deposit'):
-- 
GitLab