diff options
author | Martin Prochnow <nordlicht@martins-kabuff.de> | 2007-01-01 19:14:13 +0100 |
---|---|---|
committer | Andreas Mair <andreas@vdr-developer.org> | 2007-01-01 19:14:13 +0100 |
commit | 074a396ce9f5c5239dd790c6566e0f19dff45f59 (patch) | |
tree | b24fb923a1ec7172a481a9550504549db43540f0 /mymenusetup.c | |
parent | 01be0f47d4fcfce954f77a037f8ab4d5368c8fe7 (diff) | |
download | vdr-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.c | 4 |
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); |