diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-06-17 12:27:07 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-06-17 12:27:07 +0200 |
commit | 45d261fb7448daed79b9873e0929386dfee0445f (patch) | |
tree | 2487555b5fc227cdb26c930a828b8213938883d8 /menu.c | |
parent | 1912d36f00b53ad33155f5788985f23ead69a873 (diff) | |
download | vdr-45d261fb7448daed79b9873e0929386dfee0445f.tar.gz vdr-45d261fb7448daed79b9873e0929386dfee0445f.tar.bz2 |
The new setup option "Miscellaneous/Show channel names with source" can be used to turn on adding the source character to channel names whenever they are displayed
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 2.57 2012/06/13 13:03:26 kls Exp $ + * $Id: menu.c 2.58 2012/06/17 11:12:25 kls Exp $ */ #include "menu.h" @@ -3158,6 +3158,7 @@ cMenuSetupMisc::cMenuSetupMisc(void) Add(new cMenuEditChanItem(tr("Setup.Miscellaneous$Initial channel"), &data.InitialChannel, tr("Setup.Miscellaneous$as before"))); Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$Initial volume"), &data.InitialVolume, -1, 255, tr("Setup.Miscellaneous$as before"))); Add(new cMenuEditBoolItem(tr("Setup.Miscellaneous$Channels wrap"), &data.ChannelsWrap)); + Add(new cMenuEditBoolItem(tr("Setup.Miscellaneous$Show channel names with source"), &data.ShowChannelNamesWithSource)); Add(new cMenuEditBoolItem(tr("Setup.Miscellaneous$Emergency exit"), &data.EmergencyExit)); } |