forked from Public/monero-gui
Merge pull request #1858
e098a3f history: enable search by recipient address (mmbyday)
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user