[mythtv-users] Features / Operation

Greg Estabrooks greg at phaze.org
Thu Apr 15 11:43:10 EDT 2004


> I initially started this thread because I have a Tivo and like the menus 
> on it (doing everything from the watch recordings menu). I read in a 
> post that most things can be done from the Watch Recordings menu and 
> tried this out myself. The one issue I think I have is the lack of a on 
> screen menu of choices (without having to press a key to get the menu). 


 In the end you would have to press a key to at least navigate any on 
screen menu to choose the action you want. So, how about this, once you have 
an episode selected rather than having to press 'I' (or whatever button you
have programmed on the remote) you just press the Right arrow again to
get the same menu as if you had pressed 'I' (Play, delete, cancel, etc).


 Here is a patch to do just that against 0.14



-------------- next part --------------
--- mythtv-0.14-orig/programs/mythfrontend/playbackbox.cpp	2004-01-28 18:34:59.000000000 -0400
+++ mythtv-0.14/programs/mythfrontend/playbackbox.cpp	2004-04-15 12:26:33.000000000 -0300
@@ -884,10 +884,15 @@
 
 void PlaybackBox::cursorRight()
 {
-    leftRight = true;
-    inTitle = false;
-    skipUpdate = false;
-    update(fullRect);
+    if (!inTitle) 
+       showActionsSelected(); 
+    else
+    {
+       leftRight = true;
+       inTitle = false;
+       skipUpdate = false;
+       update(fullRect);
+    }
 }
 
 void PlaybackBox::cursorDown(bool page, bool newview)


More information about the mythtv-users mailing list