1
mirror of https://github.com/monero-project/monero-gui synced 2024-12-22 03:15:52 +01:00

history: enable search by recipient address

This commit is contained in:
mmbyday 2018-12-22 13:34:19 -08:00
parent 002c800ee8
commit e098a3f15e

View File

@ -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;