mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-02 08:25:02 -04:00
Restore original order when using Autodetect matcher
This commit is contained in:
parent
e22c35bfe3
commit
21d643c544
@ -83,7 +83,6 @@ public class SelectDialog<T> extends JDialog {
|
||||
// add repeat button
|
||||
if (autoRepeatEnabled) {
|
||||
autoRepeatCheckBox.setSelected(autoRepeatSelected);
|
||||
autoRepeatCheckBox.setToolTipText("Remember");
|
||||
autoRepeatCheckBox.setCursor(getPredefinedCursor(HAND_CURSOR));
|
||||
autoRepeatCheckBox.setIcon(ResourceManager.getIcon("button.repeat"));
|
||||
autoRepeatCheckBox.setSelectedIcon(ResourceManager.getIcon("button.repeat.selected"));
|
||||
|
@ -2,6 +2,7 @@
|
||||
package net.filebot.ui.rename;
|
||||
|
||||
import static java.util.Collections.*;
|
||||
import static java.util.Comparator.*;
|
||||
import static java.util.stream.Collectors.*;
|
||||
import static net.filebot.Logging.*;
|
||||
import static net.filebot.Settings.*;
|
||||
@ -50,10 +51,10 @@ class AutoDetectMatcher implements AutoCompleteMatcher {
|
||||
try {
|
||||
return it.getValue().get().stream();
|
||||
} catch (Exception e) {
|
||||
log.log(Level.WARNING, "Failed to process group: " + it.getKey(), e);
|
||||
log.log(Level.WARNING, "Failed group: " + it.getKey(), e);
|
||||
return Stream.empty();
|
||||
}
|
||||
return Stream.empty();
|
||||
}).collect(toList());
|
||||
}).sorted(comparing(Match::getValue, new OriginalOrder<File>(files))).collect(toList());
|
||||
} finally {
|
||||
workerThreadPool.shutdownNow();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user