]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/TransactionListAdapter.java
use full account names in the transaction list
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / TransactionListAdapter.java
index 96cbfba856cc010b80d8b94c95198b2a797a9825..de091f3a4b8112d3d00a48d5b6a66525920e14f2 100644 (file)
@@ -95,7 +95,7 @@ class TransactionListAdapter
                     accName = (TextView) row.getChildAt(0);
                     accAmount = (TextView) row.getChildAt(1);
                 }
-                accName.setText(acc.getShortAccountName());
+                accName.setText(acc.getAccountName());
                 accAmount.setText(acc.toString());
             }
             if (holder.tableAccounts.getChildCount() > rowIndex) {