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.
Best Regards,
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
Achim
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,
--- 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)