diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-07-31 09:05:13 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-07-31 09:10:58 +0200 |
| commit | bdba2dd000f030b1dce3d2bc6caef84929438679 (patch) | |
| tree | abbcbf51e43f24f4a43f3565b489ba9c73d0b8ac /src/qt/transactiontablemodel.cpp | |
| parent | univalue: remove unused methods getArray, getObject (diff) | |
| download | discoin-bdba2dd000f030b1dce3d2bc6caef84929438679.tar.xz discoin-bdba2dd000f030b1dce3d2bc6caef84929438679.zip | |
qt: Remove an obscure option no-one cares about
Remove the "Display addresses" setting checkbox. It doesn't do what
the tooltip says, and seems kind of pointless in any case.
Fixes #4580.
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(")"); } |