Coins: add description to search

This commit is contained in:
tobtoht 2021-07-02 17:03:18 +02:00
parent 18cb8e2132
commit 4489d50b72
No known key found for this signature in database
GPG key ID: 1CADD27F41F45C3C

View file

@ -30,7 +30,8 @@ bool CoinsProxyModel::filterAcceptsRow(int sourceRow, const QModelIndex &sourceP
if (!m_searchRegExp.pattern().isEmpty()) { if (!m_searchRegExp.pattern().isEmpty()) {
return coin->pubKey().contains(m_searchRegExp) || coin->address().contains(m_searchRegExp) return coin->pubKey().contains(m_searchRegExp) || coin->address().contains(m_searchRegExp)
|| coin->hash().contains(m_searchRegExp) || coin->addressLabel().contains(m_searchRegExp); || coin->hash().contains(m_searchRegExp) || coin->addressLabel().contains(m_searchRegExp)
|| coin->description().contains(m_searchRegExp);
} }
return !(!m_showSpent && coin->spent()) && coin->subaddrAccount() == 0; return !(!m_showSpent && coin->spent()) && coin->subaddrAccount() == 0;