gui/movieplayer.cpp: add 'http' action key, with cut/restore neutrino

This commit is contained in:
[CST] Focus
2014-06-12 18:56:42 +04:00
parent 069d19f701
commit 81735f5e53

View File

@@ -238,6 +238,11 @@ int CMoviePlayerGui::exec(CMenuTarget * parent, const std::string & actionKey)
is_file_player = 1;
PlayFile();
}
else if (actionKey == "http") {
isHTTP = true;
is_file_player = 1;
PlayFile();
}
else {
return menu_return::RETURN_REPAINT;
}