From patchwork Fri Mar 4 07:15:55 2005 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "C.Y.M" X-Patchwork-Id: 11795 Received: from dialup-4.246.251.63.dial1.sanjose1.level3.net ([4.246.251.63] helo=nofear.bounceme.net) by www.linuxtv.org with esmtp (Exim 4.34) id 1D770D-0000mK-5e for vdr@linuxtv.org; Fri, 04 Mar 2005 08:13:38 +0100 Received: from [10.1.1.66] (hades [10.1.1.66]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by nofear.bounceme.net (Postfix) with ESMTP id 1C31773526 for ; Thu, 3 Mar 2005 23:13:30 -0800 (PST) Message-ID: <42280B2B.1040906@syphir.sytes.net> Date: Thu, 03 Mar 2005 23:15:55 -0800 From: "C.Y.M" Organization: CooLNeT User-Agent: Mozilla Thunderbird 0.8 (Windows/20040913) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Klaus Schmidinger's VDR Subject: [vdr] Increase remote timeout? References: <4226C162.3030907@syphir.sytes.net> <4227FEE0.30704@web.de> In-Reply-To: <4227FEE0.30704@web.de> X-Enigmail-Version: 0.86.1.0 X-Enigmail-Supports: pgp-inline, pgp-mime X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: syphir@syphir.sytes.net, Klaus Schmidinger's VDR List-Id: Klaus Schmidinger's VDR List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Mar 2005 07:13:38 -0000 Status: O X-Status: X-Keywords: X-UID: 471 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)