1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-23 08:18:52 -05:00

* when folder is dropped, download subtitles for all movies in the entire hierarchy

This commit is contained in:
Reinhard Pointner 2011-11-11 11:12:26 +00:00
parent 981484fa2b
commit a9361e3f02

View File

@ -134,7 +134,7 @@ abstract class SubtitleDropTarget extends JButton {
if (containsOnly(files, FOLDERS)) {
// collect all video files from the dropped folders
List<File> videoFiles = filter(listFiles(files, 0, false), VIDEO_FILES);
List<File> videoFiles = filter(listFiles(files, 10, false), VIDEO_FILES);
if (videoFiles.size() > 0) {
return handleDownload(videoFiles);