diff options
Diffstat (limited to 'view.c')
-rw-r--r-- | view.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -254,7 +254,7 @@ void cView::DrawFloatingContent(std::string *infoText, cTvMedia *img, cTvMedia * int textLinesFull = wTextFull.Lines(); int textHeight = lineHeight * (textLinesTall + textLinesFull) + 2*border; int yText = border; - CreateContent(max(textHeight, imgHeight + 2*border)); + CreateContent(std::max(textHeight, imgHeight + 2*border)); for (int i=0; i < textLinesTall; i++) { pixmapContent->DrawText(cPoint(border, yText), wTextTall.GetLine(i), theme.Color(clrFont), clrTransparent, font); yText += lineHeight; |