mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 08:51:10 +02:00
gui/upnpbrowser.cpp: revert keys handling, pass not-handled to CNeutrinoApp
This commit is contained in:
@@ -527,12 +527,16 @@ void CUpnpBrowserGui::selectDevice()
|
||||
loop=false;
|
||||
g_RCInput->postMsg(msg, data);
|
||||
}
|
||||
#if 0
|
||||
else if (msg == NeutrinoMessages::EVT_TIMER)
|
||||
{
|
||||
CNeutrinoApp::getInstance()->handleMsg(msg, data);
|
||||
}
|
||||
else if (msg > CRCInput::RC_MaxRC)
|
||||
#endif
|
||||
else
|
||||
{
|
||||
printf("msg: %x\n", (int) msg);
|
||||
if (CNeutrinoApp::getInstance()->handleMsg(msg, data) & messages_return::cancel_all)
|
||||
loop = false;
|
||||
}
|
||||
@@ -834,11 +838,14 @@ bool CUpnpBrowserGui::selectItem(std::string id)
|
||||
loop = false;
|
||||
g_RCInput->postMsg(msg, data);
|
||||
}
|
||||
#if 0
|
||||
else if (msg == NeutrinoMessages::EVT_TIMER)
|
||||
{
|
||||
CNeutrinoApp::getInstance()->handleMsg(msg, data);
|
||||
}
|
||||
else if (msg > CRCInput::RC_MaxRC)
|
||||
#endif
|
||||
else
|
||||
{
|
||||
if (CNeutrinoApp::getInstance()->handleMsg(msg, data) & messages_return::cancel_all)
|
||||
loop = false;
|
||||
|
Reference in New Issue
Block a user