* use MultiValueInputDialog separator char
This commit is contained in:
parent
0a2b9c7760
commit
ec0ff4256b
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue