diff options
author | louis <louis.braun@gmx.de> | 2013-06-03 10:01:52 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-06-03 10:01:52 +0200 |
commit | 6da4b610d98cafe7c20555c926359d7f89347c76 (patch) | |
tree | 0cea585f046b60d7397c021b11c858fac7a5b329 | |
parent | e87e589416466453d5a8b630b8a514f33f622e86 (diff) | |
download | vdr-plugin-tvguide-6da4b610d98cafe7c20555c926359d7f89347c76.tar.gz vdr-plugin-tvguide-6da4b610d98cafe7c20555c926359d7f89347c76.tar.bz2 |
Fixed bug in channel groups color display
-rw-r--r-- | channelgroups.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/channelgroups.c b/channelgroups.c index ce11e78..5d2d1a9 100644 --- a/channelgroups.c +++ b/channelgroups.c @@ -114,7 +114,7 @@ void cChannelGroups::DrawChannelGroups(const cChannel *start, const cChannel *st line++; groupLast = group; if (channel == stop) { - CreateGroupGrid(channelGroups[groupLast].GetName(), group, lineStart, line); + CreateGroupGrid(channelGroups[groupLast].GetName(), group+1, lineStart, line); break; } } |