summaryrefslogtreecommitdiff
path: root/mymenusetup.c
diff options
context:
space:
mode:
authorMartin Prochnow <nordlicht@martins-kabuff.de>2007-01-01 19:14:13 +0100
committerAndreas Mair <andreas@vdr-developer.org>2007-01-01 19:14:13 +0100
commit074a396ce9f5c5239dd790c6566e0f19dff45f59 (patch)
treeb24fb923a1ec7172a481a9550504549db43540f0 /mymenusetup.c
parent01be0f47d4fcfce954f77a037f8ab4d5368c8fe7 (diff)
downloadvdr-plugin-extrecmenu-074a396ce9f5c5239dd790c6566e0f19dff45f59.tar.gz
vdr-plugin-extrecmenu-074a396ce9f5c5239dd790c6566e0f19dff45f59.tar.bz2
Version 0.12cv0.12c
- dvd id for archive dvd would be first read out when the corresponding entry is selected; this should prevent delays while opening the plugin - because of this the setup option "show dvd id" is removed
Diffstat (limited to 'mymenusetup.c')
-rw-r--r--mymenusetup.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/mymenusetup.c b/mymenusetup.c
index f35217d..f6cf128 100644
--- a/mymenusetup.c
+++ b/mymenusetup.c
@@ -9,7 +9,6 @@ mySetup::mySetup()
{
mysetup.HideMainMenuEntry=0;
mysetup.PatchNew=1;
- mysetup.ShowDvdNr=0;
mysetup.ReplaceOrgRecMenu=0;
mysetup.ShowRecDate=1;
mysetup.ShowRecTime=1;
@@ -28,7 +27,6 @@ myMenuSetup::myMenuSetup()
showrecdate=mysetup.ShowRecDate;
showrectime=mysetup.ShowRecTime;
showreclength=mysetup.ShowRecLength;
- showdvdnr=mysetup.ShowDvdNr;
shownewrecs=mysetup.ShowNewRecs;
descendsorting=mysetup.DescendSorting;
@@ -43,14 +41,12 @@ myMenuSetup::myMenuSetup()
Add(new cMenuEditBoolItem(tr("Show recording length"),&showreclength));
Add(new cMenuEditBoolItem(tr("Show nr. of new recordings in a directory"),&shownewrecs));
Add(new cMenuEditBoolItem(tr("Show alternative to new marker"),&patchnew));
- Add(new cMenuEditBoolItem(tr("Show dvd id"),&showdvdnr));
}
void myMenuSetup::Store()
{
SetupStore("HideMainMenuEntry",mysetup.HideMainMenuEntry=hidemainmenuentry);
SetupStore("PatchNew",mysetup.PatchNew=patchnew);
- SetupStore("ShowDvdNr",mysetup.ShowDvdNr=showdvdnr);
SetupStore("ReplaceOrgRecMenu",mysetup.ReplaceOrgRecMenu=replaceorgrecmenu);
SetupStore("ShowRecDate",mysetup.ShowRecDate=showrecdate);
SetupStore("ShowRecTime",mysetup.ShowRecTime=showrectime);