aboutsummaryrefslogtreecommitdiff
path: root/src/qt/transactiontablemodel.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-07-31 09:05:13 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2014-07-31 09:10:58 +0200
commitbdba2dd000f030b1dce3d2bc6caef84929438679 (patch)
treeabbcbf51e43f24f4a43f3565b489ba9c73d0b8ac /src/qt/transactiontablemodel.cpp
parentc7614f16d6d123ef182180a96fe43449e73db0b0 (diff)
downloadbitcoin-bdba2dd000f030b1dce3d2bc6caef84929438679.tar.xz
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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp
index 7acb0e8871..1647bc776f 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(")");
}