# HG changeset patch # User ib # Date 1355105323 0 # Node ID 29f2de5e63d6c16f4e8470d6ed75f424a257eee3 # Parent 5463501538381377fccf410509d06e132220b255 Don't unconditionally reset playlist to first item after playback. Only do so if the current item isn't the first one in the list. This will continue displaying the file's media information. diff -r 546350153838 -r 29f2de5e63d6 gui/interface.c --- a/gui/interface.c Mon Dec 10 01:54:22 2012 +0000 +++ b/gui/interface.c Mon Dec 10 02:08:43 2012 +0000 @@ -847,7 +847,7 @@ if (isPlaylistStreamtype) { if (!listMgr(PLAYLIST_ITEM_GET_CURR, 0)) uiUnsetFile(); - else { + else if (listMgr(PLAYLIST_ITEM_GET_CURR, 0) != listMgr(PLAYLIST_GET, 0)) { plItem *curr = listMgr(PLAYLIST_ITEM_SET_CURR, listMgr(PLAYLIST_GET, 0)); uiSetFile(curr->path, curr->name, STREAMTYPE_FILE); guiInfo.Track = 1;