We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e380474 commit 38db43fCopy full SHA for 38db43f
MainWindow.xaml.cs
@@ -557,14 +557,11 @@ static void InitProgressBars(ImportSettings importSettings)
557
558
int threadCount = importSettings.maxThreads;
559
// clamp to max files
560
- threadCount = Math.Min(threadCount, importSettings.maxFiles);
+ threadCount = Math.Min(threadCount, importSettings.inputFiles.Count);
561
threadCount = Math.Max(threadCount, 1);
562
563
- //Log.Write("Creating progress bars: " + threadCount);
564
-
+ //Log.WriteLine("Creating progress bars: " + threadCount);
565
bool useJsonLog = importSettings.useJSONLog;
566
567
568
progressInfos.Clear();
569
570
for (int i = 0; i < threadCount; i++)
0 commit comments