Update of /cvsroot/freevo/freevo/src/tv/plugins
In directory sc8-pr-cvs1:/tmp/cvs-serv9288

Modified Files:
        tvtime.py 
Log Message:
Don't shut down the display if using mga since it breaks the framebuffer
config. Please retest with x11, I know mga works but I don't have an x11
system to use.

(Note that none of the changes I made should have any effect on x11, but
who knows)


Index: tvtime.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/tvtime.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** tvtime.py   9 Jun 2003 16:32:23 -0000       1.5
--- tvtime.py   9 Jun 2003 16:42:13 -0000       1.6
***************
*** 10,13 ****
--- 10,21 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.6  2003/06/09 16:42:13  outlyer
+ # Don't shut down the display if using mga since it breaks the framebuffer
+ # config. Please retest with x11, I know mga works but I don't have an x11
+ # system to use.
+ #
+ # (Note that none of the changes I made should have any effect on x11, but
+ # who knows)
+ #
  # Revision 1.5  2003/06/09 16:32:23  outlyer
  # A bugfix and support for mga output via Tvtime.
***************
*** 189,194 ****
              # Most of these options are only available in tvtime ver >= 0.9.8
  
-             # config.CONF.display
- 
              command = 'tvtime -D %s -k -I %s -n %s -d %s -f %s -c %s' % 
(config.CONF.display,
                                                                     w,
--- 197,200 ----
***************
*** 437,443 ****
              elif self.mode == 'play':
                  # X11 cannot handle two fullscreen windows, so shut down the window.
!                 if DEBUG:
!                     print "Stopping Display for tvtime"
!                 osd.stopdisplay()                     
                  if DEBUG:
                      print 'TVTime_Thread.run(): Started, cmd=%s' % self.command
--- 443,450 ----
              elif self.mode == 'play':
                  # X11 cannot handle two fullscreen windows, so shut down the window.
!                 if config.CONF.display == 'x11': 
!                     if DEBUG:
!                         print "Stopping Display for tvtime/x11"
!                     osd.stopdisplay()                 
                  if DEBUG:
                      print 'TVTime_Thread.run(): Started, cmd=%s' % self.command
***************
*** 454,460 ****
  
                  # Ok, we can use the OSD again.
!                 osd.restartdisplay()
                  osd.update()
-                 print "Display back online"
  
                  if self.mode == 'play':
--- 461,469 ----
  
                  # Ok, we can use the OSD again.
!                 if config.CONF.display == 'x11':
!                     if DEBUG:
!                         print "Display now back online"
!                     osd.restartdisplay()
                  osd.update()
  
                  if self.mode == 'play':




-------------------------------------------------------
This SF.net email is sponsored by:  Etnus, makers of TotalView, The best
thread debugger on the planet. Designed with thread debugging features
you've never dreamed of, try TotalView 6 free at www.etnus.com.
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to