# HG changeset patch # User ib # Date 1353677731 0 # Node ID dd38e289f246340c3f1f08766133ddc2813615f7 # Parent f1018a8029b25391d8c2b08f560608cda29db2a0 Always stick with current playlist item after a uiCurr() call. Don't go to next item when MPlayer ends playback by being signaled GUI_FILE_NEW. This always applies no matter what the current playing status is (although GUI_STOP would be very unlikely). diff -r f1018a8029b2 -r dd38e289f246 gui/ui/actions.c --- a/gui/ui/actions.c Fri Nov 23 12:44:53 2012 +0000 +++ b/gui/ui/actions.c Fri Nov 23 13:35:31 2012 +0000 @@ -257,7 +257,7 @@ if (curr) { uiSetFileName(curr->path, curr->name, STREAMTYPE_FILE); - uiGotoTheNext = (guiInfo.Playing ? 0 : 1); + uiGotoTheNext = 0; break; }