-add tuner name to streaminfo

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@975 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
satbaby
2010-12-30 16:27:31 +00:00
parent c68f56885e
commit d54571e6cd

View File

@@ -263,8 +263,10 @@ void CStreamInfo2::paint_signal_fe_box(int _x, int _y, int w, int h)
{ {
int y1; int y1;
int xd = w/4; int xd = w/4;
std::string tuner_name = g_Locale->getText(LOCALE_STREAMINFO_SIGNAL);
g_Font[font_small]->RenderString(_x, _y+iheight+15, width-10, g_Locale->getText(LOCALE_STREAMINFO_SIGNAL), COL_MENUCONTENTDARK, 0, true); tuner_name += ": ";
tuner_name += frontend->getInfo()->name;
g_Font[font_small]->RenderString(_x, _y+iheight+15, width-10, tuner_name.c_str(), COL_MENUCONTENTDARK, 0, true);
sigBox_x = _x; sigBox_x = _x;
sigBox_y = _y+iheight+15; sigBox_y = _y+iheight+15;