diff --git a/CHANGELIST.md b/CHANGELIST.md index c15cfe2f..f4f4fa42 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -25,6 +25,7 @@ - Update to DIC 20230413 - Comment out `.` handling for DIC - Ensure dumping program box can enable/disable +- Disable special SmartE handling for DIC ### 2.5 (2023-03-12) diff --git a/MPF/ViewModels/MainViewModel.cs b/MPF/ViewModels/MainViewModel.cs index 626f3507..f13a86bc 100644 --- a/MPF/ViewModels/MainViewModel.cs +++ b/MPF/ViewModels/MainViewModel.cs @@ -1148,12 +1148,12 @@ namespace MPF.UI.ViewModels (var protections, string error) = await Protection.RunProtectionScanOnPath(drive.Letter + ":\\", App.Options, progress); string output = Protection.FormatProtections(protections); - // If SmartE is detected on the current disc, remove `/sf` from the flags for DIC only - if (Env.InternalProgram == InternalProgram.DiscImageCreator && output.Contains("SmartE")) - { - ((Modules.DiscImageCreator.Parameters)Env.Parameters)[Modules.DiscImageCreator.FlagStrings.ScanFileProtect] = false; - App.Logger.VerboseLogLn($"SmartE detected, removing {Modules.DiscImageCreator.FlagStrings.ScanFileProtect} from parameters"); - } + // If SmartE is detected on the current disc, remove `/sf` from the flags for DIC only -- Disabled until further notice + //if (Env.InternalProgram == InternalProgram.DiscImageCreator && output.Contains("SmartE")) + //{ + // ((Modules.DiscImageCreator.Parameters)Env.Parameters)[Modules.DiscImageCreator.FlagStrings.ScanFileProtect] = false; + // App.Logger.VerboseLogLn($"SmartE detected, removing {Modules.DiscImageCreator.FlagStrings.ScanFileProtect} from parameters"); + //} if (!App.Instance.LogPanel.IsExpanded) {