From d54571e6cd0f460f225ff194ad41c9cce8bb5b40 Mon Sep 17 00:00:00 2001 From: satbaby Date: Thu, 30 Dec 2010 16:27:31 +0000 Subject: [PATCH] -add tuner name to streaminfo git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@975 e54a6e83-5905-42d5-8d5c-058d10e6a962 --- src/gui/streaminfo2.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/gui/streaminfo2.cpp b/src/gui/streaminfo2.cpp index 0e2eb311e..4aa4f4442 100644 --- a/src/gui/streaminfo2.cpp +++ b/src/gui/streaminfo2.cpp @@ -263,8 +263,10 @@ void CStreamInfo2::paint_signal_fe_box(int _x, int _y, int w, int h) { int y1; int xd = w/4; - - g_Font[font_small]->RenderString(_x, _y+iheight+15, width-10, g_Locale->getText(LOCALE_STREAMINFO_SIGNAL), COL_MENUCONTENTDARK, 0, true); + std::string tuner_name = g_Locale->getText(LOCALE_STREAMINFO_SIGNAL); + 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_y = _y+iheight+15;