mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-22 10:44:46 +00:00
Merge pull request #1858
e098a3f
history: enable search by recipient address (mmbyday)
This commit is contained in:
commit
e553376c82
1 changed files with 3 additions and 0 deletions
|
@ -236,6 +236,9 @@ bool TransactionHistorySortFilterModel::filterAcceptsRow(int source_row, const Q
|
|||
if (data.toString().contains(m_searchString))
|
||||
return true;
|
||||
data = sourceModel()->data(index, TransactionHistoryModel::TransactionTimeRole);
|
||||
if (data.toString().contains(m_searchString))
|
||||
return true;
|
||||
data = sourceModel()->data(index, TransactionHistoryModel::TransactionDestinationsRole);
|
||||
if (data.toString().contains(m_searchString))
|
||||
return true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue