mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 00:41:17 +02:00
- streaminfo2: add real channelname if it differs to channelname (part 2)
Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
@@ -870,7 +870,6 @@ void CStreamInfo2::paint_techinfo(int xpos, int ypos)
|
||||
r.val += " << ";
|
||||
r.val += channel->getRealname().c_str();
|
||||
}
|
||||
|
||||
v.push_back(r);
|
||||
|
||||
// url
|
||||
@@ -908,6 +907,11 @@ void CStreamInfo2::paint_techinfo(int xpos, int ypos)
|
||||
r.key = g_Locale->getText(LOCALE_TIMERLIST_CHANNEL);
|
||||
r.key += ": ";
|
||||
r.val = channel->getName().c_str();
|
||||
if (channel->getName() != channel->getRealname())
|
||||
{
|
||||
r.val += " << ";
|
||||
r.val += channel->getRealname().c_str();
|
||||
}
|
||||
v.push_back(r);
|
||||
|
||||
// provider
|
||||
|
Reference in New Issue
Block a user