[MPlayer-cvslog] r35458 - trunk/gui/ui/actions.c

ib subversion at mplayerhq.hu
Fri Nov 23 14:35:31 CET 2012


Author: ib
Date: Fri Nov 23 14:35:31 2012
New Revision: 35458

Log:
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).

Modified:
   trunk/gui/ui/actions.c

Modified: trunk/gui/ui/actions.c
==============================================================================
--- trunk/gui/ui/actions.c	Fri Nov 23 13:44:53 2012	(r35457)
+++ trunk/gui/ui/actions.c	Fri Nov 23 14:35:31 2012	(r35458)
@@ -257,7 +257,7 @@ void uiCurr(void)
 
         if (curr) {
             uiSetFileName(curr->path, curr->name, STREAMTYPE_FILE);
-            uiGotoTheNext = (guiInfo.Playing ? 0 : 1);
+            uiGotoTheNext = 0;
             break;
         }
 


More information about the MPlayer-cvslog mailing list