mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-28 16:01:20 +02:00
gui/channellist.cpp: not allow zap on scroll mode,
if current neutrino mode is mode_ts
This commit is contained in:
@@ -738,9 +738,11 @@ int CChannelList::show()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (( msg == CRCInput::RC_spkr ) && g_settings.channellist_new_zap_mode ) {
|
else if (( msg == CRCInput::RC_spkr ) && g_settings.channellist_new_zap_mode ) {
|
||||||
this->new_mode_active = (this->new_mode_active ? 0 : 1);
|
if(CNeutrinoApp::getInstance()->getMode() != NeutrinoMessages::mode_ts) {
|
||||||
paintHead();
|
this->new_mode_active = (this->new_mode_active ? 0 : 1);
|
||||||
showChannelLogo();
|
paintHead();
|
||||||
|
showChannelLogo();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (CRCInput::isNumeric(msg) && (this->historyMode || g_settings.sms_channel)) {
|
else if (CRCInput::isNumeric(msg) && (this->historyMode || g_settings.sms_channel)) {
|
||||||
if (this->historyMode) { //numeric zap
|
if (this->historyMode) { //numeric zap
|
||||||
|
Reference in New Issue
Block a user