1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-04 08:25:03 -05:00

* use MultiValueInputDialog separator char

This commit is contained in:
Reinhard Pointner 2014-07-19 08:40:55 +00:00
parent 0a2b9c7760
commit ec0ff4256b

View File

@ -276,7 +276,7 @@ class EpisodeListMatcher implements AutoCompleteMatcher {
if (episodes.isEmpty()) {
List<String> detectedSeriesNames = detectSeriesNames(files, useSeriesIndex, useAnimeIndex, locale);
String parentPathHint = normalizePathSeparators(getRelativePathTail(files.get(0).getParentFile(), 2).getPath());
String suggestion = detectedSeriesNames.size() > 0 ? join(detectedSeriesNames, ", ") : parentPathHint;
String suggestion = detectedSeriesNames.size() > 0 ? join(detectedSeriesNames, "; ") : parentPathHint;
List<String> input;
synchronized (inputMemory) {