1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-21 23:38:50 -05:00

Parallelize CPU heavy operations in Filter Panel / Types Tools

This commit is contained in:
Reinhard Pointner 2019-05-23 04:00:25 +07:00
parent ac97d6689f
commit 0f95884d84

View File

@ -135,7 +135,7 @@ class TypeTool extends Tool<TreeModel> {
public static enum MetaType implements FileFilter {
MOVIE("Movie", f -> isMovie(f, true)),
MOVIE("Movie", f -> VIDEO_FILES.accept(f) && isMovie(f, true)),
EPISODE("Episode", f -> VIDEO_FILES.accept(f) && isEpisode(f, true)),