mirror of
				https://github.com/vdr-projects/vdr.git
				synced 2025-03-01 10:50:46 +00:00 
			
		
		
		
	No more upper limit for the value of 'Pnr'
This commit is contained in:
		
							
								
								
									
										3
									
								
								HISTORY
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								HISTORY
									
									
									
									
									
								
							| @@ -100,7 +100,7 @@ Video Disk Recorder Revision History | ||||
|   the 'timers.conf' file with a text editor, or by defining/modifying the timer | ||||
|   via the SVDRP interface. | ||||
|  | ||||
| 2000-07-30: | ||||
| 2000-08-06: | ||||
|  | ||||
| - When scrolling through a list it now moves a full page up or down when the | ||||
|   cursor reaches the top or bottom of the menu (thanks to Heino Goldenstein!). | ||||
| @@ -117,3 +117,4 @@ Video Disk Recorder Revision History | ||||
|   operation. Use the "Skip -60s" function repeatedly to go back to the beginning | ||||
|   of the recording. | ||||
| - Improved reaction on user input in fast/slow forward/back modes. | ||||
| - No more upper limit for the value of 'Pnr'. | ||||
|   | ||||
							
								
								
									
										4
									
								
								menu.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								menu.c
									
									
									
									
									
								
							| @@ -4,7 +4,7 @@ | ||||
|  * See the main source file 'vdr.c' for copyright information and | ||||
|  * how to reach the author. | ||||
|  * | ||||
|  * $Id: menu.c 1.21 2000/07/30 15:04:10 kls Exp $ | ||||
|  * $Id: menu.c 1.22 2000/08/06 07:02:52 kls Exp $ | ||||
|  */ | ||||
|  | ||||
| #include "menu.h" | ||||
| @@ -512,7 +512,7 @@ cMenuEditChannel::cMenuEditChannel(int Index) | ||||
|      Add(new cMenuEditIntItem( "Vpid",         &data.vpid, 0, 10000)); //TODO exact limits??? | ||||
|      Add(new cMenuEditIntItem( "Apid",         &data.apid, 0, 10000)); //TODO exact limits??? | ||||
|      Add(new cMenuEditIntItem( "CA",           &data.ca, 0, cDvbApi::NumDvbApis)); | ||||
|      Add(new cMenuEditIntItem( "Pnr",          &data.pnr, 0, 10000)); //TODO exact limits??? | ||||
|      Add(new cMenuEditIntItem( "Pnr",          &data.pnr, 0)); | ||||
|      } | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user