mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-02 10:21:10 +02:00
- moviebrowser: re-add missig comparator (msg ==)
This commit is contained in:
@@ -2031,9 +2031,9 @@ bool CMovieBrowser::onButtonPressLastPlayList(neutrino_msg_t msg)
|
||||
m_pcLastPlay->scrollLineUp(1);
|
||||
else if (msg == CRCInput::RC_down)
|
||||
m_pcLastPlay->scrollLineDown(1);
|
||||
else if ((neutrino_msg_t)g_settings.key_pageup)
|
||||
else if (msg == (neutrino_msg_t)g_settings.key_pageup)
|
||||
m_pcLastPlay->scrollPageUp(1);
|
||||
else if ((neutrino_msg_t)g_settings.key_pagedown)
|
||||
else if (msg == (neutrino_msg_t)g_settings.key_pagedown)
|
||||
m_pcLastPlay->scrollPageDown(1);
|
||||
else if (msg == CRCInput::RC_play)
|
||||
markItem(m_pcLastPlay);
|
||||
@@ -2055,9 +2055,9 @@ bool CMovieBrowser::onButtonPressLastRecordList(neutrino_msg_t msg)
|
||||
m_pcLastRecord->scrollLineUp(1);
|
||||
else if (msg == CRCInput::RC_down)
|
||||
m_pcLastRecord->scrollLineDown(1);
|
||||
else if ((neutrino_msg_t)g_settings.key_pageup)
|
||||
else if (msg == (neutrino_msg_t)g_settings.key_pageup)
|
||||
m_pcLastRecord->scrollPageUp(1);
|
||||
else if ((neutrino_msg_t)g_settings.key_pagedown)
|
||||
else if (msg == (neutrino_msg_t)g_settings.key_pagedown)
|
||||
m_pcLastRecord->scrollPageDown(1);
|
||||
else if (msg == CRCInput::RC_play)
|
||||
markItem(m_pcLastRecord);
|
||||
|
Reference in New Issue
Block a user