diff options
author | louis <louis.braun@gmx.de> | 2013-06-01 11:18:43 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-06-01 11:18:43 +0200 |
commit | da2893031856b0c051224650d689d76601523f83 (patch) | |
tree | 78a5f0edcf6a7ca1dcb9b79851e64717eada6416 /config.c | |
parent | 10c1a1d8cec7772a2e8975bc8a7c580ecdd19955 (diff) | |
download | vdr-plugin-tvguide-da2893031856b0c051224650d689d76601523f83.tar.gz vdr-plugin-tvguide-da2893031856b0c051224650d689d76601523f83.tar.bz2 |
Setup option to hide schedules time display in horizontal EPG grids
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -20,6 +20,7 @@ cTvguideConfig::cTvguideConfig() { osdWidth = 0;
osdHeight = 0;
displayMode = eHorizontal;
+ showTimeInGrid = 1;
colWidth = 0;
rowHeight = 0;
channelCols = 5;
@@ -238,6 +239,7 @@ bool cTvguideConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "showMainMenuEntry") == 0) showMainMenuEntry = atoi(Value);
else if (strcmp(Name, "themeIndex") == 0) themeIndex = atoi(Value);
else if (strcmp(Name, "displayMode") == 0) displayMode = atoi(Value);
+ else if (strcmp(Name, "showTimeInGrid") == 0) showTimeInGrid = atoi(Value);
else if (strcmp(Name, "displayStatusHeader") == 0) displayStatusHeader = atoi(Value);
else if (strcmp(Name, "displayChannelGroups") == 0) displayChannelGroups = atoi(Value);
else if (strcmp(Name, "statusHeaderPercent") == 0) statusHeaderPercent = atoi(Value);
|