streaminfo: show movieplayer as source, when no webtv is running

Origin commit data
------------------
Commit: ad3a2f701b
Author: vanhofen <vanhofen@gmx.de>
Date: 2015-12-14 (Mon, 14 Dec 2015)

Origin message was:
------------------
- streaminfo: show movieplayer as source, when no webtv is running
This commit is contained in:
vanhofen
2015-12-14 08:31:30 +01:00
parent e08c3ad51a
commit 3c3c33c5d2

View File

@@ -276,7 +276,12 @@ void CStreamInfo2::paint_signal_fe_box(int _x, int _y, int w, int h)
std::string tname(g_Locale->getText(LOCALE_STREAMINFO_SIGNAL));
tname += ": ";
if (mp)
{
if (CNeutrinoApp::getInstance()->getMode() == NeutrinoMessages::mode_webtv)
tname += g_Locale->getText(LOCALE_WEBTV_HEAD);
else
tname += g_Locale->getText(LOCALE_MAINMENU_MOVIEPLAYER);
}
else
tname += to_string(1 + frontend->getNumber()) + ": " + frontend->getName();