diff options
author | Christian Wieninger <winni@debian.(none)> | 2007-11-12 19:26:40 +0100 |
---|---|---|
committer | Christian Wieninger <winni@debian.(none)> | 2007-11-12 19:26:40 +0100 |
commit | 790f63032aa7128cdf3ebb512071c4ef4d148290 (patch) | |
tree | 8f722e01fb666be9d4822681c915fc52d7f3008f /epgsearchsetup.c | |
parent | 7dbb05275cbf4af85bbc8980c24c56aaff365656 (diff) | |
download | vdr-plugin-epgsearch-790f63032aa7128cdf3ebb512071c4ef4d148290.tar.gz vdr-plugin-epgsearch-790f63032aa7128cdf3ebb512071c4ef4d148290.tar.bz2 |
- added --no-location to Makefile
- options for "show progressbar in now" depend now on vdr version
- added a patch for displaying progressbars in skins classic and st:tng
Diffstat (limited to 'epgsearchsetup.c')
-rw-r--r-- | epgsearchsetup.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/epgsearchsetup.c b/epgsearchsetup.c index 566263b..a998210 100644 --- a/epgsearchsetup.c +++ b/epgsearchsetup.c @@ -412,7 +412,11 @@ void cMenuSetupEPGMenus::Set() Add(new cMenuEditStraItem(tr("Blue key"), &data->bluekeymode, 2, BlueKeyMode)); AddHelp(tr("Help$Choose which standard function ('Switch'/'Info' or 'Search') you like to have on the blue key.\n(Can be toggled with key '0')")); +#if VDRVERSNUM < 10503 Add(new cMenuEditStraItem(tr("Show progress in 'Now'"), &data->showProgress, 3, ProgressbarMode)); +#else + Add(new cMenuEditBoolItem(tr("Show progress in 'Now'"), &data->showProgress, trVDR("no"), trVDR("yes"))); +#endif AddHelp(tr("Help$Shows a progressbar in 'Overview - Now' that informs about the remaining time of the current event.\nDepending on your selected skin you can choose between 'Pipes' or 'graphical' to get the best look.")); Add(new cMenuEditBoolItem( tr("Show channel numbers"), &data->showChannelNr, trVDR("no"), trVDR("yes"))); AddHelp(tr("Help$Display channel numbers in 'Overview - Now'.\n\n(To completely define your own menu look please inspect the MANUAL)")); |