gui/movieplayer.cpp: do not quit or jump to unmarked item, in case ie empty dir added

Origin commit data
------------------
Commit: c14ab10c2e
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-09-30 (Tue, 30 Sep 2014)
This commit is contained in:
[CST] Focus
2014-09-30 13:43:48 +04:00
parent 2921437216
commit 29717fb892

View File

@@ -516,9 +516,9 @@ bool CMoviePlayerGui::SelectFile()
EnableClockAndMute(true);
} else { // filebrowser
EnableClockAndMute(false);
if (filebrowser->exec(Path_local.c_str()) == true) {
while (ret == false && filebrowser->exec(Path_local.c_str()) == true) {
Path_local = filebrowser->getCurrentDir();
CFile *file = filebrowser->getSelectedFile();
CFile *file = NULL;
filelist = filebrowser->getSelectedFiles();
filelist_it = filelist.end();
if (filelist.size() > 0) {
@@ -529,8 +529,8 @@ bool CMoviePlayerGui::SelectFile()
is_file_player = true;
ret = prepareFile(file);
}
} else
menu_ret = filebrowser->getMenuRet();
}
menu_ret = filebrowser->getMenuRet();
EnableClockAndMute(true);
}
g_settings.network_nfs_moviedir = Path_local;