From 1feec4714a4f52f48aeb589ad8c8a3de716a322f Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Sun, 17 Nov 2013 17:05:05 +0100 Subject: [PATCH] CStreamInfo2: reduce scale width of signal bars If the value is 100%, some parts of text was not displayed. --- src/gui/streaminfo2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/streaminfo2.cpp b/src/gui/streaminfo2.cpp index c487d274e..9447241d0 100644 --- a/src/gui/streaminfo2.cpp +++ b/src/gui/streaminfo2.cpp @@ -885,8 +885,8 @@ int CStreamInfo2::ts_close () void CStreamInfo2::showSNR () { if (signalbox == NULL){ - signalbox = new CSignalBox(x + 10, yypos, 240/*statusbox->getWidth()-2*/, 50, frontend); - signalbox->setScaleWidth(66); + signalbox = new CSignalBox(x + 10, yypos, 240, 50, frontend); + signalbox->setScaleWidth(60); /*%*/ signalbox->setColorBody(COL_MENUHEAD_PLUS_0); signalbox->setTextColor(COL_INFOBAR_TEXT); signalbox->doPaintBg(true);