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 8fbc3fd commit b7425b8Copy full SHA for b7425b8
MainWindow.xaml.cs
@@ -499,14 +499,11 @@ static void InitProgressBars(ImportSettings importSettings)
499
500
int threadCount = importSettings.maxThreads;
501
// clamp to max files
502
- threadCount = Math.Min(threadCount, importSettings.maxFiles);
+ threadCount = Math.Min(threadCount, importSettings.inputFiles.Count);
503
threadCount = Math.Max(threadCount, 1);
504
505
//Log.WriteLine("Creating progress bars: " + threadCount);
506
-
507
bool useJsonLog = importSettings.useJSONLog;
508
509
- //Log.WriteLine("Creating progress bars: " + threadCount);
510
progressInfos.Clear();
511
512
for (int i = 0; i < threadCount; i++)
0 commit comments