summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorAndreas Brugger <brougs78@gmx.net>2006-02-04 18:25:22 +0100
committerThomas Günther <tom@toms-cafe.de>2009-06-03 03:08:32 +0200
commit8d32cf88bbe5b69a2710029cdaa896470a0fe20c (patch)
tree8a5cbc0e00440ff6a85181e1ffadf4576fa7d343 /menu.c
parentc1bf83aec2961a4e84dbc1c36042bd985f044a91 (diff)
downloadvdr-plugin-text2skin-8d32cf88bbe5b69a2710029cdaa896470a0fe20c.tar.gz
vdr-plugin-text2skin-8d32cf88bbe5b69a2710029cdaa896470a0fe20c.tar.bz2
2006-02-04: Version 1.1-cvs_ext-0.8 (vdr-text2skin-1.1-cvs_ext-0.8.diff)
- added a configuration option for showing the scrollbar in the menus and finished implementation
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/menu.c b/menu.c
index 47ca136..e8f2306 100644
--- a/menu.c
+++ b/menu.c
@@ -9,6 +9,7 @@
cText2SkinSetupPage::cText2SkinSetupPage(void) {
mData = Text2SkinSetup;
+ Add(new cMenuEditBoolItem(tr("Show scrollbar in the menus"), &mData.MenuScrollbar, tr("no"), tr("yes")));
Add(new cMenuEditBoolItem(tr("Scrolling behaviour"), &mData.MarqueeLeftRight, tr("to the left"), tr("left and right")));
Add(new cMenuEditBoolItem(tr("Reset Marquee for new item"), &mData.MarqueeReset, tr("no"), tr("yes")));
#if VDRVERSNUM >= 10330
@@ -22,6 +23,7 @@ cText2SkinSetupPage::~cText2SkinSetupPage() {
}
void cText2SkinSetupPage::Store(void) {
+ SetupStore("MenuScrollbar", mData.MenuScrollbar);
SetupStore("MarqueeLeftRight", mData.MarqueeLeftRight);
SetupStore("MarqueeReset", mData.MarqueeReset);
#if VDRVERSNUM >= 10330