1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-19 15:29:42 +01:00

* In Collection view with filter set: Don't jump to the selected item when expanding an artist.

This commit is contained in:
Christian Muehlhaeuser 2011-12-05 08:33:09 +01:00
parent 477202aa47
commit 41c79b931f

View File

@ -190,10 +190,15 @@ void
TreeProxyModel::filterFinished()
{
m_artistsFilterCmd = 0;
if ( PlaylistInterface::filter() != m_filter )
{
emit filterChanged( m_filter );
}
PlaylistInterface::setFilter( m_filter );
setFilterRegExp( m_filter );
emit filterChanged( m_filter );
emit trackCountChanged( trackCount() );
emit filteringFinished();
}