From 9896e54e9303802043bebdd6cb4bef9780c17ac2 Mon Sep 17 00:00:00 2001 From: "Mr.Xia" <1424473282@qq.com> Date: Sat, 23 May 2026 15:39:16 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=8E=92=E5=BA=8F=E7=A7=8D=E5=AD=90?= =?UTF-8?q?=E4=B8=8E=E5=BD=93=E5=89=8D=E5=88=80=E5=BA=8F=E4=B8=80=E8=87=B4?= =?UTF-8?q?=E6=97=B6=E8=B7=B3=E8=BF=87=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 --- MainWindowViewModel.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/MainWindowViewModel.cs b/MainWindowViewModel.cs index 6d5ee60..768a25e 100644 --- a/MainWindowViewModel.cs +++ b/MainWindowViewModel.cs @@ -1510,6 +1510,11 @@ M30"; if (sortDiameters.Count != tools.Count) return; + // 检查排序种子与当前刀序是否完全一致,一致则无需提示 + var currentDiameters = tools.Select(t => t.Diameter).ToList(); + if (currentDiameters.SequenceEqual(sortDiameters)) + return; + // 构建提示消息 string message = hasSpecificSortFile && hasGeneralSortFile ? $"检测到两个排序种子文件:\n" +