mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 01:11:06 +02:00
moviebrowser: re-add missig comparator (msg ==)
Origin commit data
------------------
Branch: ni/coolstream
Commit: 88bd3fa308
Author: vanhofen <vanhofen@gmx.de>
Date: 2015-12-01 (Tue, 01 Dec 2015)
Origin message was:
------------------
- moviebrowser: re-add missig comparator (msg ==)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
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