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

* Emit trackCountChanged() after removing tracks from the TrackModel.

This commit is contained in:
Christian Muehlhaeuser 2010-11-24 08:33:19 +01:00
parent 61f70dd3a7
commit 83b228cbe9

View File

@ -284,6 +284,8 @@ TrackModel::removeIndex( const QModelIndex& index )
delete item;
emit endRemoveRows();
}
emit trackCountChanged( rowCount( QModelIndex() ) );
}