* use MultiValueInputDialog separator char

This commit is contained in:
Reinhard Pointner 2014-07-19 08:40:55 +00:00
parent 0a2b9c7760
commit ec0ff4256b
1 changed files with 1 additions and 1 deletions

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) {