mirror of
https://github.com/mitb-archive/filebot
synced 2024-12-22 07:48:52 -05:00
Parallelize CPU heavy operations in Filter Panel / Types Tools
This commit is contained in:
parent
ac97d6689f
commit
0f95884d84
@ -135,7 +135,7 @@ class TypeTool extends Tool<TreeModel> {
|
|||||||
|
|
||||||
public static enum MetaType implements FileFilter {
|
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)),
|
EPISODE("Episode", f -> VIDEO_FILES.accept(f) && isEpisode(f, true)),
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user