diff options
| author | Luke Dashjr <[email protected]> | 2017-09-25 04:18:35 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2017-11-10 11:50:05 +0000 |
| commit | eac2abca02e01c83cc696ebe8a760e842e2f8424 (patch) | |
| tree | 6270824fd1973e30e672726cc0b1725ff317cf6b /src/qt/transactionview.cpp | |
| parent | Qt: Avoid invalidating the search filter, when it doesn't really change (diff) | |
| download | discoin-eac2abca02e01c83cc696ebe8a760e842e2f8424.tar.xz discoin-eac2abca02e01c83cc696ebe8a760e842e2f8424.zip | |
Qt: Enable searching by transaction id
Diffstat (limited to 'src/qt/transactionview.cpp')
| -rw-r--r-- | src/qt/transactionview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp index e8380ad74..39e85d65b 100644 --- a/src/qt/transactionview.cpp +++ b/src/qt/transactionview.cpp @@ -97,7 +97,7 @@ TransactionView::TransactionView(const PlatformStyle *platformStyle, QWidget *pa search_widget = new QLineEdit(this); #if QT_VERSION >= 0x040700 - search_widget->setPlaceholderText(tr("Enter address or label to search")); + search_widget->setPlaceholderText(tr("Enter address, transaction id, or label to search")); #endif hlayout->addWidget(search_widget); |