summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--win/CS/HandBrake.ApplicationServices/Services/PresetService.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs b/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs
index d416624dc..12afaadbc 100644
--- a/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs
+++ b/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs
@@ -386,6 +386,7 @@ namespace HandBrake.ApplicationServices.Services
List<Preset> list = (List<Preset>)Ser.Deserialize(reader);
foreach (Preset preset in list)
{
+ preset.IsBuildIn = true; // Older versions did not have this flag so explicitly make sure it is set.
this.presets.Add(preset);
}