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" +