Author: dmeyer
Date: Thu Aug 30 14:06:50 2007
New Revision: 9854

Log:
Patch by Tanja Part 5:
o Interface adjustments


Modified:
   trunk/ui/src/tv/plugins/guide.py

Modified: trunk/ui/src/tv/plugins/guide.py
==============================================================================
--- trunk/ui/src/tv/plugins/guide.py    (original)
+++ trunk/ui/src/tv/plugins/guide.py    Thu Aug 30 14:06:50 2007
@@ -175,13 +175,13 @@
         if event == MENU_LEFT:
             if self.selected.start == 0:
                 return True
-            self.get_program(self.selected.program.start - 1)
+            self.get_program(self.selected.start - 1)
             return True
 
         if event == MENU_RIGHT:
             if self.selected.stop == sys.maxint:
                 return True
-            self.get_program(self.selected.program.stop + 1)
+            self.get_program(self.selected.stop + 1)
             return True
 
         if event == MENU_PAGEUP:
@@ -205,6 +205,7 @@
             return True
 
         if event == TV_START_RECORDING:
+            # TODO: make this schedule or remove
             self.selected.submenu(additional_items=True)
             return True
 

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to