Increase remote timeout?

Message ID 42280B2B.1040906@syphir.sytes.net
State New
Headers

Commit Message

C.Y.M March 4, 2005, 7:15 a.m. UTC
  Achim Tuffentsammer wrote:
> C.Y.M wrote:
> 
>> What variable would I set to increase the time to enter numbers with 
>> the remote control before they timeout?  I find that I have to enter 
>> the numbers really fast or vdr will switch channels before Im done 
>> pressing the keys.
>>
> You might try
> 
> #define DIRECTCHANNELTIMEOUT 1000 //ms
> 
> in menu.c
> 

Thanks!  That is just what I wanted... One second between key entries was just 
too fast for my slow fingers :)

Best Regards,
  

Patch

--- vdr-1.3.22/menu.c.orig	2005-03-03 22:55:35.000000000 -0800
+++ vdr-1.3.22/menu.c	2005-03-03 22:55:51.000000000 -0800
@@ -2713,7 +2713,7 @@ 
 
 // --- cDisplayChannel -------------------------------------------------------
 
-#define DIRECTCHANNELTIMEOUT 1000 //ms
+#define DIRECTCHANNELTIMEOUT 3000 //ms
 
 cDisplayChannel::cDisplayChannel(int Number, bool Switched)
 :cOsdObject(true)