1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 07:49:42 +01:00

* Potential fix for missing tracks in tree view.

This commit is contained in:
Christian Muehlhaeuser 2011-09-17 20:38:11 +02:00
parent b99a1a753c
commit b9515d3408

View File

@ -208,7 +208,7 @@ TreeProxyModel::filterAcceptsRow( int sourceRow, const QModelIndex& sourceParent
if ( !pi->result()->isOnline() && ti->result()->isOnline() )
return false;
if ( ti->result()->collection()->source()->isLocal() )
if ( !pi->result()->collection()->source()->isLocal() && ti->result()->collection()->source()->isLocal() )
return false;
}
}