mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 00:41:17 +02:00
gui/channellist.cpp: allow multi-record on channel. should we ask for confirm, if we have sign in list ?
This commit is contained in:
@@ -585,6 +585,7 @@ int CChannelList::show()
|
|||||||
loop=false;
|
loop=false;
|
||||||
}
|
}
|
||||||
else if( msg == CRCInput::RC_record) { //start direct recording from channellist
|
else if( msg == CRCInput::RC_record) { //start direct recording from channellist
|
||||||
|
#if 0
|
||||||
if(!CRecordManager::getInstance()->RecordingStatus(chanlist[selected]->channel_id))
|
if(!CRecordManager::getInstance()->RecordingStatus(chanlist[selected]->channel_id))
|
||||||
{
|
{
|
||||||
printf("[neutrino channellist] start direct recording...\n");
|
printf("[neutrino channellist] start direct recording...\n");
|
||||||
@@ -601,7 +602,17 @@ int CChannelList::show()
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
if(SameTP()) {
|
||||||
|
printf("[neutrino channellist] start direct recording...\n");
|
||||||
|
hide();
|
||||||
|
if (!CRecordManager::getInstance()->Record(chanlist[selected]->channel_id)) {
|
||||||
|
paintHead();
|
||||||
|
paint();
|
||||||
|
} else
|
||||||
|
loop=false;
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if( msg == CRCInput::RC_stop ) { //stopp recording
|
else if( msg == CRCInput::RC_stop ) { //stopp recording
|
||||||
if(CRecordManager::getInstance()->RecordingStatus())
|
if(CRecordManager::getInstance()->RecordingStatus())
|
||||||
|
Reference in New Issue
Block a user