diff options
author | Andreas Brugger <brougs78@gmx.net> | 2006-02-04 18:25:22 +0100 |
---|---|---|
committer | Thomas Günther <tom@toms-cafe.de> | 2009-06-03 03:08:32 +0200 |
commit | 8d32cf88bbe5b69a2710029cdaa896470a0fe20c (patch) | |
tree | 8a5cbc0e00440ff6a85181e1ffadf4576fa7d343 /setup.c | |
parent | c1bf83aec2961a4e84dbc1c36042bd985f044a91 (diff) | |
download | vdr-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 'setup.c')
-rw-r--r-- | setup.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -9,6 +9,7 @@ cText2SkinSetup Text2SkinSetup; // --- cText2SkinSetup -------------------------------------------------------- cText2SkinSetup::cText2SkinSetup(void) { + MenuScrollbar = false; MarqueeLeftRight = true; MarqueeReset = false; CheckTimerConflict = false; @@ -16,7 +17,8 @@ cText2SkinSetup::cText2SkinSetup(void) { } bool cText2SkinSetup::SetupParse(const char *Name, const char *Value) { - if (strcmp(Name, "MarqueeLeftRight") == 0) MarqueeLeftRight = atoi(Value); + if (strcmp(Name, "MenuScrollbar") == 0) MenuScrollbar = atoi(Value); + else if (strcmp(Name, "MarqueeLeftRight") == 0) MarqueeLeftRight = atoi(Value); else if (strcmp(Name, "MarqueeReset") == 0) MarqueeReset = atoi(Value); else if (strcmp(Name, "CheckTimerConflict") == 0) CheckTimerConflict = atoi(Value); else if (strcmp(Name, "MaxCacheFill") == 0) MaxCacheFill = atoi(Value); |