diff options
| author | lvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-10-29 08:19:23 +0000 |
|---|---|---|
| committer | lvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-10-29 08:19:23 +0000 |
| commit | f824de5e35575d14348515b2da08321d8bc0c8c8 (patch) | |
| tree | c08dfe35e1f0f018f9aa69dcb7a467761e8dcfd3 /muggle-plugin | |
| parent | 930e58f8378824876f4b062676d9a22142dc8a7a (diff) | |
| download | vdr-plugin-muggle-f824de5e35575d14348515b2da08321d8bc0c8c8.tar.gz vdr-plugin-muggle-f824de5e35575d14348515b2da08321d8bc0c8c8.tar.bz2 | |
Allow to delete first entry of playlist
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk@262 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'muggle-plugin')
| -rw-r--r-- | muggle-plugin/mg_playlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/muggle-plugin/mg_playlist.c b/muggle-plugin/mg_playlist.c index b4bc487..5ead8f7 100644 --- a/muggle-plugin/mg_playlist.c +++ b/muggle-plugin/mg_playlist.c @@ -140,7 +140,7 @@ bool mgPlaylist::remove( unsigned pos ) { bool result = false; - if( pos > 0 && pos != m_current_idx ) + if( pos != m_current_idx ) { result = mgTracklist::remove( pos ); |
