Enlightenment CVS committal

Author  : tsauerbeck
Project : misc
Module  : eplayer

Dir     : misc/eplayer/src


Modified Files:
        callbacks.c 


Log Message:
Reset paused state on next/prev/seek, updated Edje documentation
===================================================================
RCS file: /cvsroot/enlightenment/misc/eplayer/src/callbacks.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- callbacks.c 7 Nov 2003 22:33:28 -0000       1.11
+++ callbacks.c 10 Nov 2003 20:55:17 -0000      1.12
@@ -65,6 +65,7 @@
        if (player->playlist->cur_item->next) {
                player->playlist->cur_item = player->playlist->cur_item->next;
                eplayer_playback_start(player, 1);
+               paused = 0;
        } else {
                /* there's no next item, so move to the beginning again
                 * but don't start playing yet.
@@ -97,6 +98,7 @@
        player->playlist->cur_item = player->playlist->cur_item->prev;
 
        eplayer_playback_start(player, 1);
+       paused = 0;
 }
 
 void cb_volume_raise(ePlayer *player, Evas_Object *obj,
@@ -170,6 +172,7 @@
        eplayer_playback_stop(player);
        pli->plugin->set_current_pos(pli->plugin->get_current_pos() + 5);
        eplayer_playback_start(player, 0);
+       paused = 0;
 }
 
 void cb_seek_backward(void *udata, Evas_Object *obj,
@@ -189,4 +192,6 @@
                pli->plugin->set_current_pos(cur_time - 5);
                eplayer_playback_start(player, 0);
        }
+       
+       paused = 0;
 }




-------------------------------------------------------
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to