mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-04 04:11:09 +02:00
Merge branch 'master' into pu/mp
Origin commit data
------------------
Branch: ni/coolstream
Commit: 08dc0d7561
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2017-09-30 (Sat, 30 Sep 2017)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -15,7 +15,7 @@ EPGPlus.page_up Seite vor
|
|||||||
EPGPlus.prev_bouquet Bouquet zurück
|
EPGPlus.prev_bouquet Bouquet zurück
|
||||||
EPGPlus.record Aufnahme
|
EPGPlus.record Aufnahme
|
||||||
EPGPlus.refresh_epg Aktualisieren
|
EPGPlus.refresh_epg Aktualisieren
|
||||||
EPGPlus.remind Vormerken
|
EPGPlus.remind Umschalten
|
||||||
EPGPlus.scroll_mode Scroll-Modus
|
EPGPlus.scroll_mode Scroll-Modus
|
||||||
EPGPlus.stretch_mode Stretch-Modus
|
EPGPlus.stretch_mode Stretch-Modus
|
||||||
EPGPlus.swap_mode Blättern
|
EPGPlus.swap_mode Blättern
|
||||||
|
@@ -927,22 +927,16 @@ int CMenuWidget::exec(CMenuTarget* parent, const std::string &)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case (CRCInput::RC_left):
|
case (CRCInput::RC_left):
|
||||||
{
|
case (CRCInput::RC_right):
|
||||||
if(hasItem() && selected > -1 && (int)items.size() > selected) {
|
case (CRCInput::RC_ok):
|
||||||
CMenuItem* itemX = items[selected];
|
if (hasItem() && selected > -1 && (int)items.size() > selected) {
|
||||||
if (!itemX->isMenueOptionChooser()) {
|
//exec this item...
|
||||||
if (g_settings.menu_left_exit)
|
CMenuItem* item = items[selected];
|
||||||
|
if (msg == CRCInput::RC_left && g_settings.menu_left_exit &&
|
||||||
|
!item->isMenueOptionChooser()) {
|
||||||
msg = CRCInput::RC_timeout;
|
msg = CRCInput::RC_timeout;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
case (CRCInput::RC_right):
|
|
||||||
case (CRCInput::RC_ok):
|
|
||||||
{
|
|
||||||
if(hasItem() && selected > -1 && (int)items.size() > selected) {
|
|
||||||
//exec this item...
|
|
||||||
CMenuItem* item = items[selected];
|
|
||||||
if (!item->isSelectable())
|
if (!item->isSelectable())
|
||||||
break;
|
break;
|
||||||
item->msg = msg;
|
item->msg = msg;
|
||||||
@@ -966,7 +960,6 @@ int CMenuWidget::exec(CMenuTarget* parent, const std::string &)
|
|||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
msg = CRCInput::RC_timeout;
|
msg = CRCInput::RC_timeout;
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case (CRCInput::RC_home):
|
case (CRCInput::RC_home):
|
||||||
|
Reference in New Issue
Block a user