mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 15:32:59 +02:00
Merge branch 'master' into pu/mp
This commit is contained in:
@@ -695,15 +695,15 @@ void CInfoViewer::check_channellogo_ca_SettingsChange()
|
||||
}
|
||||
}
|
||||
|
||||
void CInfoViewer::showTitle(t_channel_id chid, const bool calledFromNumZap, int epgpos)
|
||||
void CInfoViewer::showTitle(t_channel_id chid, const bool calledFromNumZap, int epgpos, bool forcePaintButtonBar/*=false*/)
|
||||
{
|
||||
CZapitChannel * channel = CServiceManager::getInstance()->FindChannel(chid);
|
||||
|
||||
if(channel)
|
||||
showTitle(channel, calledFromNumZap, epgpos);
|
||||
showTitle(channel, calledFromNumZap, epgpos, forcePaintButtonBar);
|
||||
}
|
||||
|
||||
void CInfoViewer::showTitle(CZapitChannel * channel, const bool calledFromNumZap, int epgpos)
|
||||
void CInfoViewer::showTitle(CZapitChannel * channel, const bool calledFromNumZap, int epgpos, bool forcePaintButtonBar/*=false*/)
|
||||
{
|
||||
if(!calledFromNumZap && !(zap_mode & IV_MODE_DEFAULT))
|
||||
resetSwitchMode();
|
||||
@@ -727,7 +727,8 @@ void CInfoViewer::showTitle(CZapitChannel * channel, const bool calledFromNumZap
|
||||
check_channellogo_ca_SettingsChange();
|
||||
aspectRatio = 0;
|
||||
last_curr_id = last_next_id = 0;
|
||||
showButtonBar = !calledFromNumZap;
|
||||
showButtonBar = (!calledFromNumZap || forcePaintButtonBar);
|
||||
bool noTimer = (calledFromNumZap && forcePaintButtonBar);
|
||||
|
||||
fileplay = (ChanNum == 0);
|
||||
newfreq = true;
|
||||
@@ -777,7 +778,7 @@ void CInfoViewer::showTitle(CZapitChannel * channel, const bool calledFromNumZap
|
||||
show_dot = !show_dot;
|
||||
|
||||
if (showButtonBar) {
|
||||
infoViewerBB->paintshowButtonBar();
|
||||
infoViewerBB->paintshowButtonBar(noTimer);
|
||||
}
|
||||
|
||||
int ChanNumWidth = 0;
|
||||
|
Reference in New Issue
Block a user