Commit ba7b7a8d authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - fix QT playlist display bug when clicking on top-level of playlist.

Patch by Alexander Gall. Thanks.
parent f02ba540
...@@ -744,6 +744,8 @@ void PLModel::rebuild( playlist_item_t *p_root ) ...@@ -744,6 +744,8 @@ void PLModel::rebuild( playlist_item_t *p_root )
PL_LOCK; PL_LOCK;
/* Clear the tree */ /* Clear the tree */
if( rootItem ) if( rootItem )
{
if( rootItem->children.size() )
{ {
beginRemoveRows( index( rootItem, 0 ), 0, beginRemoveRows( index( rootItem, 0 ), 0,
rootItem->children.size() -1 ); rootItem->children.size() -1 );
...@@ -751,6 +753,7 @@ void PLModel::rebuild( playlist_item_t *p_root ) ...@@ -751,6 +753,7 @@ void PLModel::rebuild( playlist_item_t *p_root )
rootItem->children.clear(); rootItem->children.clear();
endRemoveRows(); endRemoveRows();
} }
}
if( p_root ) if( p_root )
{ {
//if( rootItem ) delete rootItem; //if( rootItem ) delete rootItem;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment