The "Shutdown" entry in the main menu doesn't work right after
watching TV. Selecting it does nothing, no shutdown diaglog
box appears. If I then watch a movie, everything's back to normal
and I can shutdown again.

The logs didn't show any suspicious entries, but when I compared
the sources of src/video/plugins/mplayer.py and src/tv/plugins/mplayer.py
I noticed that the Stop() function in src/tv/plugins/mplayer.py
didn't contain a "dialog.disable_overlay_display()" call.

Adding the missing call seems to fix this issue (see attached patch).

so long,

Hias
Index: src/tv/plugins/mplayer.py
===================================================================
--- src/tv/plugins/mplayer.py	(revision 11524)
+++ src/tv/plugins/mplayer.py	(working copy)
@@ -322,6 +322,8 @@
             lcfp.write('\n')
             lcfp.close()
 
+        dialog.disable_overlay_display()
+
     def eventhandler(self, event, menuw=None):
         s_event = '%s' % event
 
------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables 
unlimited royalty-free distribution of the report engine 
for externally facing server and web deployment. 
http://p.sf.net/sfu/businessobjects
_______________________________________________
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to