diff options
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); } |