diff options
author | louis <louis.braun@gmx.de> | 2015-03-20 14:16:09 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2015-03-20 14:16:09 +0100 |
commit | 9f8cd6dab57b863922903e713a56cbd6e86e8958 (patch) | |
tree | a9398a074dd0690e61cf9b0ecdc97d6c8f9fdd5b /libtemplate/templatefunction.c | |
parent | a5e051e327de2098605cea9ecd517d549bbad9e0 (diff) | |
download | vdr-plugin-skindesigner-9f8cd6dab57b863922903e713a56cbd6e86e8958.tar.gz vdr-plugin-skindesigner-9f8cd6dab57b863922903e713a56cbd6e86e8958.tar.bz2 |
Fixed hide root menu from a subview template
Diffstat (limited to 'libtemplate/templatefunction.c')
-rw-r--r-- | libtemplate/templatefunction.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libtemplate/templatefunction.c b/libtemplate/templatefunction.c index cae9124..fa0b958 100644 --- a/libtemplate/templatefunction.c +++ b/libtemplate/templatefunction.c @@ -404,6 +404,8 @@ int cTemplateFunction::GetNumericParameter(eParamType type) { return 0;
else if (type == ptMenuItemWidth)
return 0;
+ else if (type == ptHideRoot)
+ return 0;
return -1;
}
return hit->second;
@@ -1053,7 +1055,7 @@ bool cTemplateFunction::SetOverflow(string value) { }
bool cTemplateFunction::SetHideRoot(string value) {
- bool hideRoot = 0;
+ int hideRoot = 0;
if (!value.compare("true"))
hideRoot = 1;
numericParameters.insert(pair<eParamType, int>(ptHideRoot, hideRoot));
@@ -1538,6 +1540,9 @@ string cTemplateFunction::GetParamName(eParamType pt) { case ptScaleTvHeight:
name = "Scale TV Picture Height";
break;
+ case ptHideRoot:
+ name = "Hide Root View";
+ break;
case ptCache:
name = "Cache Image";
break;
|