Close all on menu key; allow sat and fav keys

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@1890 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
focus
2011-11-25 09:30:29 +00:00
parent 1800f9073d
commit b92ca9b515

View File

@@ -144,7 +144,14 @@ int CDBoxInfoWidget::exec(CMenuTarget* parent, const std::string &)
} else
doLoop = false;
}
else if(msg == CRCInput::RC_setup) {
res = menu_return::RETURN_EXIT_ALL;
doLoop = false;
}
else if((msg == CRCInput::RC_sat) || (msg == CRCInput::RC_favorites)) {
g_RCInput->postMsg (msg, 0);
res = menu_return::RETURN_EXIT_ALL;
doLoop = false;
}
else
{
@@ -164,8 +171,6 @@ int CDBoxInfoWidget::exec(CMenuTarget* parent, const std::string &)
}
}
}
}
hide();