gui/scan.cpp, gui/motorcontrol.cpp: increase signal bar height for 50%

This commit is contained in:
[CST] Focus
2014-06-19 17:40:55 +04:00
parent fc3e9ebd62
commit bb77bafdca
2 changed files with 4 additions and 4 deletions

View File

@@ -77,7 +77,7 @@ void CMotorControl::Init(void)
width = w_max(720, 0);
mheight = mheight - 2;
height = hheight + (23 * mheight) - 5;
height = hheight + (24 * mheight) - 5;
height = h_max(height, 0);
x = frameBuffer->getScreenX() + (frameBuffer->getScreenWidth() - width) / 2;
@@ -583,7 +583,7 @@ void CMotorControl::showSNR ()
if (signalbox == NULL){
int xpos1 = x + 10;
//signalbox = new CSignalBox(xpos1, y + height - mheight - 5, width - 2*(xpos1-x), g_Font[SNeutrinoSettings::FONT_TYPE_MENU]->getHeight(), frontend, false);
signalbox = new CSignalBox(xpos1, y + height - 4*mheight - 5, width - 2*(xpos1-x), 4*g_Font[SNeutrinoSettings::FONT_TYPE_MENU]->getHeight(), frontend, true);
signalbox = new CSignalBox(xpos1, y + height - (mheight*2*3)/2 - 5, width - 2*(xpos1-x), (g_Font[SNeutrinoSettings::FONT_TYPE_MENU]->getHeight()*2*3)/2, frontend, true);
signalbox->setColorBody(COL_MENUCONTENT_PLUS_0);
signalbox->setTextColor(COL_MENUCONTENT_TEXT);
signalbox->doPaintBg(true);