mirror of
				https://github.com/vdr-projects/vdr.git
				synced 2025-03-01 10:50:46 +00:00 
			
		
		
		
	Automatically closing 'Commands' menu if command doesn't return any output
This commit is contained in:
		
							
								
								
									
										2
									
								
								HISTORY
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								HISTORY
									
									
									
									
									
								
							| @@ -1603,3 +1603,5 @@ Video Disk Recorder Revision History | ||||
|   title, which will result in a confirmation prompt before executing the | ||||
|   command. | ||||
| - Changed a few leftover 'new char[...]' to MALLOC(char, ...). | ||||
| - If a command executed from the "Commands" menu doesn't return any output, the | ||||
|   OSD will now be closed automatically. | ||||
|   | ||||
							
								
								
									
										3
									
								
								menu.c
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								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.215 2002/10/13 08:44:33 kls Exp $ | ||||
|  * $Id: menu.c 1.216 2002/10/13 09:15:26 kls Exp $ | ||||
|  */ | ||||
|  | ||||
| #include "menu.h" | ||||
| @@ -2093,6 +2093,7 @@ eOSState cMenuCommands::Execute(void) | ||||
|         const char *Result = command->Execute(); | ||||
|         if (Result) | ||||
|            return AddSubMenu(new cMenuText(command->Title(), Result, fontFix)); | ||||
|         return osEnd; | ||||
|         } | ||||
|      } | ||||
|   return osContinue; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user