Update of /cvsroot/freevo/freevo/src
In directory sc8-pr-cvs1:/tmp/cvs-serv4361

Modified Files:
        childapp.py 
Log Message:
Make this clear; we are using stop_osd to figure out if we're playing
video or not. It's got nothing to do with stopping the actual OSD :)


Index: childapp.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/childapp.py,v
retrieving revision 1.47
retrieving revision 1.48
diff -C2 -d -r1.47 -r1.48
*** childapp.py 13 Dec 2003 14:29:45 -0000      1.47
--- childapp.py 13 Dec 2003 14:34:43 -0000      1.48
***************
*** 10,13 ****
--- 10,17 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.48  2003/12/13 14:34:43  outlyer
+ # Make this clear; we are using stop_osd to figure out if we're playing
+ # video or not. It's got nothing to do with stopping the actual OSD :)
+ #
  # Revision 1.47  2003/12/13 14:29:45  outlyer
  # The purpose of checking for "stop_osd" is to figure out if it's a video
***************
*** 554,560 ****
          running_children.append(self)
  
! 
!         print "STOP_OSD: " + str(stop_osd)
!         if stop_osd == 2:
              rc.post_event(Event(VIDEO_START))
              stop_osd = config.OSD_STOP_WHEN_PLAYING
--- 558,564 ----
          running_children.append(self)
  
!         self.is_video = 0                       # Be more explicit
!         if stop_osd == 2: 
!             self.is_video = 1
              rc.post_event(Event(VIDEO_START))
              stop_osd = config.OSD_STOP_WHEN_PLAYING
***************
*** 598,602 ****
              osd.restart()
  
!         if stop_osd:       # Implies a video file
              rc.post_event(Event(VIDEO_END))
  
--- 602,606 ----
              osd.restart()
  
!         if self.is_video:
              rc.post_event(Event(VIDEO_END))
  




-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to