allow for filtering addresses and labels by searching for the typed string anywhere, not just at the beginning (#641)

This commit is contained in:
Wladimir J. van der Laan 2011-11-24 20:20:01 +01:00
parent b790077c37
commit d8b8640863

View file

@ -35,7 +35,7 @@ bool TransactionFilterProxy::filterAcceptsRow(int sourceRow, const QModelIndex &
return false;
if(datetime < dateFrom || datetime > dateTo)
return false;
if(!address.startsWith(addrPrefix) && !label.startsWith(addrPrefix))
if (!address.contains(addrPrefix, Qt::CaseInsensitive) && !label.contains(addrPrefix, Qt::CaseInsensitive))
return false;
if(amount < minAmount)
return false;