diff options
Diffstat (limited to 'mymenusetup.c')
-rw-r--r-- | mymenusetup.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/mymenusetup.c b/mymenusetup.c index 0d038ed..2a3cc18 100644 --- a/mymenusetup.c +++ b/mymenusetup.c @@ -12,15 +12,17 @@ myMenuSetup::myMenuSetup() showrectime=mysetup.ShowRecTime; showreclength=mysetup.ShowRecLength; showdvdnr=mysetup.ShowDvdNr; + shownewrecs=mysetup.ShowNewRecs; Add(new cMenuEditBoolItem(tr("Show recording date"),&showrecdate)); Add(new cMenuEditBoolItem(tr("Show recording time"),&showrectime)); Add(new cMenuEditBoolItem(tr("Show recording length"),&showreclength)); - Add(new cMenuEditBoolItem(tr("Hide main menu entry"),&hidemainmenuentry)); - Add(new cMenuEditBoolItem(tr("Replace original recordings menu"),&replaceorgrecmenu)); - Add(new cMenuEditBoolItem(tr("Show alternative new marker"),&patchnew)); + Add(new cMenuEditBoolItem(tr("Show \"new recordings column\""),&shownewrecs)); + Add(new cMenuEditBoolItem(tr("Show alternative to new marker"),&patchnew)); Add(new cMenuEditBoolItem(tr("Show alternative dvd marker"),&patchdvd)); Add(new cMenuEditBoolItem(tr("Show dvd number"),&showdvdnr)); + Add(new cMenuEditBoolItem(tr("Hide main menu entry"),&hidemainmenuentry)); + Add(new cMenuEditBoolItem(tr("Replace original recordings menu"),&replaceorgrecmenu)); } void myMenuSetup::Store() @@ -33,4 +35,5 @@ void myMenuSetup::Store() SetupStore("ShowRecDate",mysetup.ShowRecDate=showrecdate); SetupStore("ShowRecTime",mysetup.ShowRecTime=showrectime); SetupStore("ShowRecLength",mysetup.ShowRecLength=showreclength); + SetupStore("ShowNewRecs",mysetup.ShowNewRecs=shownewrecs); } |