diff options
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services/PresetService.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/PresetService.cs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs b/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs index a4946278a..804a963b6 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs @@ -153,7 +153,6 @@ namespace HandBrake.ApplicationServices.Services {
if (preset.Name == update.Name)
{
- preset.Query = update.Query;
preset.Task = update.Task;
preset.UsePictureFilters = update.UsePictureFilters;
@@ -304,7 +303,6 @@ namespace HandBrake.ApplicationServices.Services {
Category = category,
Name = presetName[0].Replace("+", string.Empty).Trim(),
- Query = presetName[2],
Version = this.userSettingService.GetUserSetting<string>(ASUserSettingConstants.HandBrakeVersion),
Description = string.Empty, // Maybe one day we will populate this.
IsBuildIn = true,
|