From d995dc3c483c08fa8920bea841ff65d7cc409130 Mon Sep 17 00:00:00 2001 From: l4kr Date: Sat, 4 Jul 2026 02:55:42 +0200 Subject: [PATCH] Lower default strip concurrency to 3 --- MainWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs index c151a72..8a69d1c 100644 --- a/MainWindow.xaml.cs +++ b/MainWindow.xaml.cs @@ -16,7 +16,7 @@ namespace Futonizer; public partial class MainWindow : FluentWindow { private const int MaxConcurrentScans = 10; - private const int MaxConcurrentStrips = 5; + private const int MaxConcurrentStrips = 3; private AppSettings _settings = new(); private readonly ObservableCollection _fileQueue = new();