diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-08-03 17:08:52 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-08-03 17:08:57 +0200 |
| commit | b4c61f878cf2dc91d7f2db96718d362a57d37739 (patch) | |
| tree | 81cefad3ea80014951e4be8a0c068e06b64e345f /src/qt/transactiontablemodel.cpp | |
| parent | Merge branch 'whyextern' of git://github.com/jtimon/bitcoin into merge-whyextern (diff) | |
| parent | qt: Remove an obscure option no-one cares about (diff) | |
| download | discoin-b4c61f878cf2dc91d7f2db96718d362a57d37739.tar.xz discoin-b4c61f878cf2dc91d7f2db96718d362a57d37739.zip | |
Merge pull request #4610
bdba2dd qt: Remove an obscure option no-one cares about (Wladimir J. van der Laan)
Diffstat (limited to 'src/qt/transactiontablemodel.cpp')
| -rw-r--r-- | src/qt/transactiontablemodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp index 7acb0e887..1647bc776 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -346,7 +346,7 @@ QString TransactionTableModel::lookupAddress(const std::string &address, bool to { description += label + QString(" "); } - if(label.isEmpty() || walletModel->getOptionsModel()->getDisplayAddresses() || tooltip) + if(label.isEmpty() || tooltip) { description += QString("(") + QString::fromStdString(address) + QString(")"); } |