diff options
author | louis <louis.braun@gmx.de> | 2013-05-26 17:11:36 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-05-26 17:11:36 +0200 |
commit | 6a0447e7a8506659c8a211594c8632d4d0aafd6e (patch) | |
tree | 506ec89dfee6d7cf7f67011364c461ed5eed7587 /dummygrid.c | |
parent | 0338b9166fae00182853e78edf7ea9ef5bcfac78 (diff) | |
download | vdr-plugin-tvguide-6a0447e7a8506659c8a211594c8632d4d0aafd6e.tar.gz vdr-plugin-tvguide-6a0447e7a8506659c8a211594c8632d4d0aafd6e.tar.bz2 |
fixed text on short dummy grids
Diffstat (limited to 'dummygrid.c')
-rw-r--r-- | dummygrid.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dummygrid.c b/dummygrid.c index 7f943fc..0c3ca20 100644 --- a/dummygrid.c +++ b/dummygrid.c @@ -67,6 +67,11 @@ void cDummyGrid::drawText() { } } else if (tvguideConfig.displayMode == eHorizontal) { + if (Width()/tvguideConfig.minutePixel < 10) { + int titleY = (tvguideConfig.rowHeight - tvguideConfig.FontGridHorizontal->Height())/2; + pixmap->DrawText(cPoint(borderWidth - 2, titleY), "...", theme.Color(clrFont), clrTransparent, tvguideConfig.FontGridHorizontal); + return; + } int titleY = (tvguideConfig.rowHeight - tvguideConfig.FontGridHorizontal->Height())/2; pixmap->DrawText(cPoint(borderWidth, titleY), *strText, theme.Color(clrFont), clrTransparent, tvguideConfig.FontGridHorizontal); } |